.about-overview-section {
  padding: 60px 0;
  background-color: #ffffff;
}
.about-overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.about-pink-title {
  color: #e91e63;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.4;
}
.about-lead-text {
  font-size: 16.5px;
  color: var(--text);
  line-height: 2;
  text-align: justify;
}
.about-overview-media {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-large-logo-watermark {
  width: 100%;
  max-width: 480px;
  opacity: 0.85;
}
.about-large-logo-watermark img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.about-vision-mission-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8fafd 0%, #f1f5fa 100%);
}
.about-vm-stack {
  display: flex;
  flex-direction: column;
  gap: 45px;
  max-width: 900px;
  margin: 0 auto;
}
.about-vm-block {
  text-align: center;
}
.about-vm-title {
  font-size: 26px;
  font-weight: 900;
  color: #0c1437;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}
.about-vm-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.85;
  max-width: 820px;
  margin: 0 auto;
}

.about-features-list-section {
  padding: 70px 0;
  background-color: #ffffff;
}
.about-features-grid-layout {
  max-width: 800px;
  margin: 0 auto;
}
.about-features-header {
  text-align: center;
  margin-bottom: 40px;
}
.about-features-main-title {
  font-size: 26px;
  font-weight: 800;
  color: #0c1437;
  display: inline-block;
}
.about-features-items-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-feature-item-node {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding: 8px 0;
}
.feature-check-icon {
  width: 32px;
  height: 32px;
  background-color: rgba(36, 84, 255, 0.06);
  color: #2454ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-item-text {
  font-size: 17px;
  font-weight: 700;
  color: #444b6e;
}

@media (min-width: 1025px) {
  .about-overview-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
  }
  .about-pink-title {
    font-size: 32px;
  }
  .about-lead-text {
    font-size: 17.5px;
  }
  .about-features-items-list {
    padding-right: 20px;
  }
  .about-vm-title {
    font-size: 30px;
  }
  .about-vm-desc {
    font-size: 17px;
  }
}

body.dark .about-overview-section,
body.dark .about-features-list-section,
html.dark .about-overview-section,
html.dark .about-features-list-section,
[data-theme="dark"] .about-overview-section,
[data-theme="dark"] .about-features-list-section,
[data-bs-theme="dark"] .about-overview-section,
[data-bs-theme="dark"] .about-features-list-section {
  background-color: #121833 !important;
}

body.dark .about-vision-mission-section,
html.dark .about-vision-mission-section,
[data-theme="dark"] .about-vision-mission-section,
[data-bs-theme="dark"] .about-vision-mission-section {
  background: linear-gradient(180deg, #161b3d 0%, #111530 100%) !important;
}

body.dark .about-lead-text,
html.dark .about-lead-text,
[data-theme="dark"] .about-lead-text,
[data-bs-theme="dark"] .about-lead-text {
  color: #cdd3ea !important;
}

body.dark .about-vm-title,
body.dark .about-features-main-title,
html.dark .about-vm-title,
html.dark .about-features-main-title,
[data-theme="dark"] .about-vm-title,
[data-theme="dark"] .about-features-main-title,
[data-bs-theme="dark"] .about-vm-title,
[data-bs-theme="dark"] .about-features-main-title {
  color: #ffffff !important;
}

body.dark .about-vm-desc,
html.dark .about-vm-desc,
[data-theme="dark"] .about-vm-desc,
[data-bs-theme="dark"] .about-vm-desc {
  color: #9aa3c5 !important;
}

body.dark .feature-item-text,
html.dark .feature-item-text,
[data-theme="dark"] .feature-item-text,
[data-bs-theme="dark"] .feature-item-text {
  color: #e8ecf5 !important;
}

body.dark .feature-check-icon,
html.dark .feature-check-icon,
[data-theme="dark"] .feature-check-icon,
[data-bs-theme="dark"] .feature-check-icon {
  background-color: rgba(24, 168, 255, 0.15) !important;
  color: #18a8ff !important;
}

body.dark .about-large-logo-watermark,
html.dark .about-large-logo-watermark,
[data-theme="dark"] .about-large-logo-watermark,
[data-bs-theme="dark"] .about-large-logo-watermark {
  opacity: 0.15;
}

@media (prefers-color-scheme: dark) {
  .about-overview-section,
  .about-features-list-section {
    background-color: #121833 !important;
  }
  .about-vision-mission-section {
    background: linear-gradient(180deg, #161b3d 0%, #111530 100%) !important;
  }
  .about-lead-text {
    color: #cdd3ea !important;
  }
  .about-vm-title,
  .about-features-main-title {
    color: #ffffff !important;
  }
  .about-vm-desc {
    color: #9aa3c5 !important;
  }
  .feature-item-text {
    color: #e8ecf5 !important;
  }
  .feature-check-icon {
    background-color: rgba(24, 168, 255, 0.15) !important;
    color: #18a8ff !important;
  }
  .about-large-logo-watermark {
    opacity: 0.15;
  }
}
