/* Main Content Layout */
.main-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 60px 0;
  flex-wrap: wrap;
}



/* Text Section */
.text-section {
  flex: 1;
  min-width: 300px;
  max-width: 2000px;
}

.text-section h1 {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 24px;
}



/* Section Styles */
.case-section {
  margin-bottom: 8px;
}

.case-section h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 4px;
}

.case-section p {
  font-size: 24px;
  line-height: 1.5;
 }