@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');

:root {
  --primary-blue: #0A58CA;
  --primary-blue-hover: #084298;
  --dark-navy: #0B192C;
  --soft-sky-blue: #E8F3FD;
  --light-gray: #F8FAFC;
  --white: #FFFFFF;
  --text-dark: #1E293B;
  --text-muted: #475569;
  --border-color: #E2E8F0;
  
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;
}

html {
  font-size: 15px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  line-height: 1.5;
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1 {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--dark-navy);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-family: var(--font-serif);
}

h2 {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--dark-navy);
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-navy);
}

.serif-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  color: #0d837f; /* Match the teal color from the reference */
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  display: inline-block;
  background: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: #125DB0; /* Matched from reference */
  color: var(--white);
}

.btn-primary:hover {
  background-color: #0e4889;
}

.btn-outline {
  background-color: var(--white);
  color: var(--text-dark);
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.btn-outline:hover {
  border-color: #cbd5e1;
  background-color: #f8fafc;
}

.btn-white {
  background-color: var(--white);
  color: var(--primary-blue);
}

/* Header & Nav */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #F4FBFC; /* Exact background from screenshot */
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.header.scrolled {
  position: fixed;
  background: rgba(244, 251, 252, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-weight: 500;
  color: #475569;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
  color: #125BB2;
}

.nav-actions .btn {
  padding: 0.75rem 1.5rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark-navy);
}

/* Sections */
section {
  padding: 6rem 0;
}

/* Hero Section */
.hero {
  padding-top: 150px;
  padding-bottom: 100px;
  background: linear-gradient(135deg, #D4EBF8 0%, #C4E8F6 50%, #BFE4F3 100%);
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 640px;
}

.hero-content .section-badge {
    background: var(--white);
    border: 1px solid #E2E8F0;
    border-radius: 50px;
    color: #1A8389;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
}

.hero-content .section-badge i {
    font-size: 1rem;
}

.hero-content p.subtitle {
  font-size: 1.15rem;
  color: #475569;
  margin-bottom: 2.5rem;
  max-width: 540px;
  line-height: 1.6;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  margin-bottom: 4rem;
}

.hero-info-box-line {
  border-left: 2px solid #1A8389;
  padding-left: 1.25rem;
  max-width: 500px;
}

.hero-info-box-line p {
  margin: 0;
  font-size: 0.95rem;
  color: #64748B;
  line-height: 1.6;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 32px;
  overflow: visible;
}

.hero-image-wrapper > img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15);
}

.floating-badge-new {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.25rem 1.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  z-index: 2;
  width: 90%;
  max-width: 450px;
}

.badge-icon-new {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #E8F4F4;
  color: #1A8389;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.badge-text-new h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--dark-navy);
  font-weight: 700;
}

.badge-text-new p {
  font-size: 0.85rem;
  color: #64748B;
  margin: 0;
}

.badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #E8F4FF;
  color: #125DB0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.badge-text h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  color: var(--dark-navy);
}

.badge-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* Trust Bar */
.trust-bar {
  background: transparent;
  padding: 4rem 0;
  text-align: center;
}

.trust-bar-header {
    margin-bottom: 2.5rem;
}

.trust-bar-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.trust-logos {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--dark-navy);
  font-weight: 600;
  padding: 1rem 2rem;
  background: #FAFAF7;
  border-radius: 50px;
  border: 1px solid #E2E8F0;
  font-size: 0.95rem;
  box-shadow: none;
}

.trust-item i {
  color: #1A8389;
  font-size: 1.1rem;
}

/* Features Section */
.features {
    background-color: #F4FBFC;
}

.features-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #1A8389;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.features-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.features-header h2 {
  margin-bottom: 1.5rem;
  font-family: var(--font-serif);
  font-size: 2.75rem;
  letter-spacing: -0.02em;
}

.features-header p {
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  border: 1px solid #E2E8F0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  height: 90px;
  background-color: #EBF7F7;
  border-bottom-left-radius: 100%;
  z-index: -1;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-shape {
  transform: scale(1.1);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #125BB2 0%, #1A8389 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
  font-weight: 700;
  color: var(--dark-navy);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Opportunities Section */
.opportunities {
  background: #fff;
}

.opportunities-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.opportunities-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #1A8389;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.opportunities-content h2 {
  font-family: var(--font-serif);
  font-size: 3rem;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: var(--dark-navy);
}

.opportunities-content p.desc {
  color: #475569;
  font-size: 1.15rem;
  margin: 0 0 2.5rem;
  line-height: 1.6;
}

.opportunities-info-banner {
  background: #EDF7F6;
  padding: 1.5rem;
  border-radius: 16px;
  margin-top: 3rem;
  border: 1px solid #D5EBE8;
}

.opportunities-info-banner p {
  margin: 0;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

.opportunities-info-banner strong {
  color: #125BB2;
}

.opportunities-img {
  border-radius: 32px;
  width: 100%;
  height: auto;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1);
}

.opportunities-img-wrapper {
  position: relative;
}

.opportunities-badge {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: var(--white);
  padding: 1.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 15px 30px -5px rgba(0,0,0,0.1);
  text-align: center;
  border: 1px solid var(--border-color);
}

.opportunities-badge h3 {
  color: #125BB2;
  font-size: 2.25rem;
  margin-bottom: 0.25rem;
  font-family: var(--font-sans);
  font-weight: 700;
}

.opportunities-badge p {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

.opportunities-btn {
  background: linear-gradient(90deg, #1A8389 0%, #125BB2 100%);
  color: white;
  padding: 1rem 2.25rem;
  border-radius: 50px;
  border: none;
  font-weight: 600;
}

/* Testimonials Section */
.testimonials {
    background-color: #F4FBFC;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 6rem;
  align-items: start;
}

.testimonials-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #1A8389;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.testimonials-h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--dark-navy);
    margin-bottom: 1.5rem;
}

.testimonials-desc {
    color: #475569;
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.testimonial-form-container {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  border: 1px solid #E2E8F0;
}

.testimonial-form-container h3 {
  font-family: var(--font-serif);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-navy);
}

.testimonial-form-container > p {
  color: #475569;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
  background: #FAFAFA;
}

.form-control:focus {
  outline: none;
  border-color: #125BB2;
  background: var(--white);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.testimonials-btn {
  background: linear-gradient(90deg, #1A8389 0%, #125BB2 100%);
  color: white;
  padding: 1rem;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  width: 100%;
}

.testimonial-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2rem 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  border: 1px solid #E2E8F0;
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  font-size: 3rem;
  color: #D5EBE8;
  opacity: 0.8;
  z-index: 0;
}

.testimonial-text {
  font-size: 1rem;
  color: #475569;
  font-style: normal;
  margin-bottom: 2rem;
  padding-right: 2.5rem;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  background: #125BB2;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-weight: 600;
  font-size: 1.125rem;
}

.author-info h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.author-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* CTA Section */
.cta-section {
  background: #F0F4F8;
  color: var(--white);
  text-align: center;
  padding: 60px 0;
}

.cta-section-inner {
  background: linear-gradient(135deg, #1A8389 0%, #125BB2 100%);
  border-radius: 24px;
  padding: 72px 40px;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-family: var(--font-serif);
  font-size: 3.25rem;
  letter-spacing: -0.02em;
}

.cta-section p {
  font-size: 1.15rem;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  opacity: 0.9;
  line-height: 1.6;
}

.cta-btn {
  color: #125BB2;
  background-color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* SMS Disclaimer */
.sms-disclaimer {
  background: #FAFAFA;
  padding: 4rem 0;
}

.sms-disclaimer-box {
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.sms-disclaimer-box p {
  font-size: 0.95rem;
  color: #64748B;
  text-align: left;
  line-height: 1.6;
  margin: 0;
}

.sms-disclaimer-box p strong {
  color: var(--dark-navy);
  font-weight: 700;
}

/* Footer */
.footer {
  background: #0B1521;
  color: var(--white);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.footer-logo-wrapper {
  background: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.footer-logo {
  height: 45px;
  display: block;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
  background: #125BB2;
  border-color: #125BB2;
  transform: translateY(-2px);
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-contact-list i {
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-contact-list a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.footer-legal {
  display: flex;
  gap: 0.5rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--white);
}

/* Inner Pages Header Spacer */
.inner-page-header {
    padding-top: 160px;
    padding-bottom: 80px;
    background: linear-gradient(100deg, #E8F4FF 0%, #FFFFFF 100%);
    text-align: center;
}
.inner-page-header h1 {
    margin-bottom: 1rem;
}
.inner-content {
    padding: 80px 0;
    min-height: 50vh;
}

/* About Us Page Styles */
.about-hero {
  background: linear-gradient(135deg, #CBEFFF 0%, #E2F6FB 45%, #B4E2FC 100%);
  padding: 130px 0 80px;
  overflow: hidden;
}
.about-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 6rem;
  align-items: center;
}
.about-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: #1698A0;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: block;
}
.about-title {
  font-family: var(--font-serif);
  font-size: 3.6rem;
  color: #06101D;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.about-desc {
  font-size: 1.1rem;
  font-weight: 300;
  color: #475569;
  line-height: 1.7;
  max-width: 95%;
}
.about-hero-image img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  display: block;
}

.about-page-wrapper {
  background: #F4FBFC;
}

.about-mission {
  padding: 4rem 0 2rem;
}
.about-mission-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 6rem;
  align-items: start;
}
.about-mission-text p {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.about-mission-card {
  background: linear-gradient(135deg, #24888F 0%, #1157B5 100%);
  border-radius: 16px;
  padding: 3.5rem 2.5rem;
  color: var(--white);
  box-shadow: 0 20px 40px rgba(18, 91, 178, 0.15);
}
.mission-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
}
.about-mission-card h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  color: var(--white);
  font-weight: 600;
}
.about-mission-card p {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.95);
  line-height: 1.7;
  font-weight: 300;
}
.mission-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 2rem 0;
}

.about-features {
  padding: 2rem 0 3rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--dark-navy);
  text-align: left;
  margin-bottom: 2.5rem;
}
.about-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.about-feature-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  border: 1px solid #E2E8F0;
  transition: transform 0.3s ease;
}
.about-feature-card:hover {
  transform: translateY(-5px);
}
.af-icon {
  width: 44px;
  height: 44px;
  background: #E8F8FA;
  color: #1A8389;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
}
.about-feature-card h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--dark-navy);
  margin-bottom: 0.8rem;
  line-height: 1.3;
  font-weight: 700;
}
.about-feature-card p {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: #64748B;
  line-height: 1.6;
  font-weight: 300;
}

.about-stats-cta {
  padding: 0 0 4rem;
}
.stats-bar {
  background: #FCFBF7;
  border-radius: 20px;
  padding: 3.5rem 2rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 3rem;
}
.stat-item {
  text-align: center;
}
.stat-num {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 3.5rem;
  color: #1157B5;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #64748B;
  letter-spacing: 0.15em;
}
.cta-centered {
  text-align: center;
}
.cta-centered .btn {
  background: linear-gradient(90deg, #1A8389 0%, #125BB2 100%);
  padding: 1.15rem 2.8rem;
  font-size: 1rem;
  box-shadow: 0 12px 24px rgba(18, 91, 178, 0.2);
  border: none;
  font-weight: 600;
}
.cta-centered .btn:hover {
  box-shadow: 0 16px 32px rgba(18, 91, 178, 0.3);
  transform: translateY(-2px);
}

/* Mission & Vision Dedicated Cards */
.mission-vision-cards {
  padding: 2rem 0 4rem;
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.mv-card {
  background: var(--white);
  border: 1px solid rgba(26, 131, 137, 0.4);
  border-radius: 16px;
  padding: 2.5rem 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(26, 131, 137, 0.08);
}
.mv-icon {
  width: 70px;
  height: 70px;
  background: #E8F8FA; 
  color: #1A8389;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.25rem;
}
.mv-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--dark-navy); 
  margin-bottom: 1rem;
  line-height: 1.3;
}
.mv-card p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
  font-weight: 300;
}

/* Core Values Section */
.core-values {
  background: linear-gradient(160deg, #EBF4FF 0%, #E0F4F4 60%, #D6EEF8 100%);
  padding: 80px 0;
}
.core-values .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #0D1E3A;
  margin-bottom: 0.5rem;
  text-align: left;
}
.core-values-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #475569;
  margin-bottom: 3rem;
  text-align: left;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.value-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  text-align: left;
  box-shadow: 0 4px 20px rgba(18, 91, 178, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(18,91,178,0.25), rgba(26,131,137,0.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(18, 91, 178, 0.14);
  border-color: rgba(26,131,137,0.3);
}
.value-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #125BB2 0%, #1A8389 100%);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  position: static;
  transform: none;
  left: auto;
  top: auto;
  border: none;
  box-shadow: 0 4px 12px rgba(18,91,178,0.25);
}
.value-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0D1E3A;
  margin: 0;
  line-height: 1.3;
}
.value-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: #64748B;
  margin: 0.4rem 0 0;
  line-height: 1.5;
}

.hc-specialties-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.hc-specialties-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 1.5rem;
}
