.page-main {
  min-height: calc(100vh - 400px);
  padding: 64px 0;
  background-color: var(--warm-ivory);
}

.page-header {
  text-align: center;
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 2px solid var(--sakura-coral);
}

.page-header h1 {
  font-size: 42px;
  font-weight: 700;
  color: var(--midnight-navy);
  margin-bottom: 0;
}

.content-block {
  background-color: var(--white);
  padding: 48px;
  border-radius: 16px;
  margin-bottom: 32px;
  box-shadow: 0 2px 16px rgba(26, 43, 74, 0.06);
}

.content-block h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--midnight-navy);
  margin-bottom: 24px;
}

.content-block p {
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.content-block p:last-child {
  margin-bottom: 0;
}

.empty-content {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--warm-ivory);
  border: 2px dashed #D0D5DD;
}

.placeholder-text {
  font-size: 18px;
  color: var(--text-secondary);
  font-style: italic;
}

.policy-date {
  margin-top: 16px;
  font-size: 16px;
  color: var(--text-secondary);
  font-style: italic;
}

.about-section {
  margin-bottom: 80px;
}

.about-content-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-content-image.reverse {
  direction: rtl;
}

.about-content-image.reverse > * {
  direction: ltr;
}

.about-text-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--midnight-navy);
  margin-bottom: 24px;
}

.about-text-content p {
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.about-text-content p:last-child {
  margin-bottom: 0;
}

.about-image-placeholder .image-placeholder {
  background-color: #E8EDF5;
  border-radius: 16px;
  padding: 120px 40px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-illustration {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-illustration svg {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(26, 43, 74, 0.08);
}

.about-values-section {
  background-color: var(--white);
  padding: 64px;
  border-radius: 16px;
  margin-bottom: 80px;
}

.section-title-centered {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: var(--midnight-navy);
  margin-bottom: 56px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.value-item {
  text-align: center;
}

.value-icon {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.value-item h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--midnight-navy);
  margin-bottom: 16px;
}

.value-item p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.stats-section {
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
  padding: 32px;
  background-color: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(26, 43, 74, 0.08);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--sakura-coral);
  margin-bottom: 12px;
}

.stat-label {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.about-cta-content {
  text-align: center;
  background-color: var(--white);
  padding: 64px;
  border-radius: 16px;
}

.about-cta-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--midnight-navy);
  margin-bottom: 24px;
}

.about-cta-content p {
  font-size: 20px;
  line-height: 1.5;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.cta-button-secondary {
  display: inline-block;
  background-color: transparent;
  color: var(--midnight-navy);
  padding: 16px 40px;
  border-radius: 32px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--midnight-navy);
  cursor: pointer;
}

.cta-button-secondary:hover {
  background-color: var(--midnight-navy);
  color: var(--white);
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 32px;
  }

  .content-block {
    padding: 32px 24px;
  }

  .content-block h2 {
    font-size: 24px;
  }

  .content-block p {
    font-size: 16px;
  }

  .about-content-image {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-content-image.reverse {
    direction: ltr;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .stat-number {
    font-size: 36px;
  }

  .about-values-section {
    padding: 40px 24px;
  }

  .about-cta-content {
    padding: 40px 24px;
  }

  .about-cta-buttons {
    flex-direction: column;
  }

  .cta-button,
  .cta-button-secondary {
    width: 100%;
  }
}
