
    .care-support-section {
      font-family: 'DM Sans', sans-serif;
      background-color: #ffffff;
      padding: 60px 5%;
      color: #0f172a;
      display: flex;
      justify-content: center;
      align-items: center;
      box-sizing: border-box;
    }

    .care-support-section * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    .care-support-section .container {
      width: 100%;
      max-width: 1200px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    /* Top Badge */
    .care-support-section .badge-wrapper {
      opacity: 0;
      animation: fadeInDown 0.6s ease forwards;
      animation-delay: 0.1s;
      margin-bottom: 20px;
    }

    .care-support-section .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background-color: #e0f2fe;
      color: #0f172a;
      padding: 6px 16px;
      border-radius: 50px;
      font-size: 0.87rem;
      font-weight: 700;
    }

    .care-support-section .badge svg {
      width: 14px;
      height: 14px;
      fill: currentColor;
    }

    /* Headings */
    .care-support-section .heading-wrapper {
      text-align: center;
      max-width: 900px;
      margin-bottom: 48px;
    }

    .care-support-section .main-title {
      font-size: clamp(1.8rem, 4vw, 2.75rem);
      font-weight: 700;
      line-height: 1.2;
      color: #0f172a;
      margin-bottom: 20px;
      opacity: 0;
      animation: fadeInUp 0.8s ease forwards;
      animation-delay: 0.2s;
    }

    .care-support-section .sub-title {
      font-size: clamp(0.95rem, 2vw, 1.1rem);
      line-height: 1.6;
      color: #475569;
      max-width: 800px;
      margin: 0 auto;
      opacity: 0;
      animation: fadeInUp 0.8s ease forwards;
      animation-delay: 0.4s;
    }

    /* Two Column Split Content */
    .care-support-section .split-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      width: 100%;
      align-items: center;
      margin-bottom: 40px;
      opacity: 0;
      animation: fadeInUp 0.8s ease forwards;
      animation-delay: 0.6s;
    }

    /* Image Styling */
    .care-support-section .image-box {
      width: 100%;
      height: 420px;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
      background-color: #f1f5f9;
    }

    .care-support-section .care-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* Right Side Cards Stack */
    .care-support-section .cards-stack {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .care-support-section .info-card {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      background: #ffffff;
      border: 1px solid #f1f5f9;
      padding: 24px;
      border-radius: 16px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: default;
    }

    /* Hover Animation on Cards */
    .care-support-section .info-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
      border-color: #e2e8f0;
      background-color: #fcfdfd;
    }

    .care-support-section .card-icon-box {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      background-color: #eff6ff;
      color: #1a56db;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .care-support-section .card-icon-box svg {
      width: 24px;
      height: 24px;
    }

    .care-support-section .card-text h3 {
      font-size: 1.15rem;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 6px;
    }

    .care-support-section .card-text p {
      font-size: 0.95rem;
      color: #64748b;
      line-height: 1.5;
    }

    /* Centered Action Buttons */
    .care-support-section .button-group {
      display: flex;
      justify-content: center;
      gap: 16px;
      width: 100%;
      margin-bottom: 40px;
      opacity: 0;
      animation: fadeInUp 0.8s ease forwards;
      animation-delay: 0.8s;
    }

    .care-support-section .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1rem;
      font-family: inherit;
      cursor: pointer;
      transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .care-support-section .btn svg {
      width: 18px;
      height: 18px;
    }

    /* Button Hover & Click Animations */
    .care-support-section .btn-primary {
      background-color: #1a56db;
      color: #ffffff;
      border: 2px solid #1a56db;
      box-shadow: 0 4px 14px rgba(26, 86, 219, 0.2);
    }

    .care-support-section .btn-primary:hover {
      background-color: #1e40af;
      border-color: #1e40af;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(26, 86, 219, 0.3);
    }

    .care-support-section .btn-primary:active {
      transform: translateY(1px);
      box-shadow: 0 2px 10px rgba(26, 86, 219, 0.2);
    }

    .care-support-section .btn-secondary {
      background-color: #ffffff;
      color: #1a56db;
      border: 2px solid #cbd5e1;
    }

    .care-support-section .btn-secondary:hover {
      border-color: #1a56db;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    }

    .care-support-section .btn-secondary:active {
      transform: translateY(1px);
    }

    /* Bottom Status Banner */
    .care-support-section .status-banner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      background-color: #f0f7ff;
      border-radius: 16px;
      padding: 20px 40px;
      width: 100%;
      max-width: 1100px;
      opacity: 0;
      animation: fadeInUp 0.8s ease forwards;
      animation-delay: 1s;
    }

    .care-support-section .banner-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      background: #ffffff;
      color: #1a56db;
      border-radius: 50%;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
      flex-shrink: 0;
    }

    .care-support-section .banner-icon svg {
      width: 22px;
      height: 22px;
    }

    .care-support-section .banner-text {
      font-size: 1rem;
      color: #1e293b;
      line-height: 1.4;
    }

    .care-support-section .banner-text strong {
      color: #0f172a;
      font-weight: 700;
    }

    /* Keyframe Animations */
    @keyframes fadeInUp {
      0% {
        opacity: 0;
        transform: translateY(24px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInDown {
      0% {
        opacity: 0;
        transform: translateY(-16px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Responsive Design / Screen Adjustments */
    @media (max-width: 1024px) {
      .care-support-section {
        padding: 50px 4%;
      }
      .care-support-section .split-layout {
        gap: 30px;
      }
      .care-support-section .image-box {
        height: 380px;
      }
    }

    @media (max-width: 768px) {
      .care-support-section .split-layout {
        grid-template-columns: 1fr;
        gap: 32px;
      }
      .care-support-section .image-box {
        height: 340px; /* Adjusted desktop/tablet height mapping */
      }
      .care-support-section .status-banner {
        padding: 16px 24px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
      }
    }

    @media (max-width: 480px) {
      .care-support-section {
        padding: 40px 16px;
      }
      .care-support-section .heading-wrapper {
        margin-bottom: 32px;
      }
      .care-support-section .image-box {
        height: 240px; /* Snappy height for mobile screens */
        border-radius: 16px;
      }
      .care-support-section .info-card {
        padding: 16px;
        gap: 14px;
      }
      .care-support-section .button-group {
        flex-direction: column;
        width: 100%;
      }
      .care-support-section .btn {
        width: 100%;
      }
    }
  

    .care-services-section {
      font-family: 'DM Sans', sans-serif;
      background: #fdfeff;
      background: radial-gradient(circle at 50% 50%, rgba(244, 249, 255, 0.8) 0%, rgba(255, 255, 255, 1) 100%);
      padding: 80px 24px;
      color: #0f172a;
      display: flex;
      justify-content: center;
      align-items: center;
      box-sizing: border-box;
    }

    .care-services-section * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    .care-services-section .section-container {
      width: 100%;
      max-width: 1300px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    /* Top Premium Pill Badge Indicator */
    .care-services-section .badge-wrapper {
      opacity: 0;
      animation: fadeInDown 0.6s ease forwards;
      animation-delay: 0.1s;
      margin-bottom: 24px;
    }

    .care-services-section .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background-color: #edf5ff;
      color: #0f172a;
      padding: 8px 20px;
      border-radius: 50px;
      font-size: 0.875rem;
      font-weight: 700;
    }

    .care-services-section .badge svg {
      width: 14px;
      height: 14px;
      fill: currentColor;
    }

    /* Header Context Typography */
    .care-services-section .main-title {
      font-size: clamp(2.2rem, 5vw, 3rem);
      font-weight: 700;
      color: #0c1a30;
      text-align: center;
      margin-bottom: 16px;
      line-height: 1.2;
      opacity: 0;
      animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
      animation-delay: 0.2s;
    }

    .care-services-section .sub-title {
      font-size: clamp(1rem, 2vw, 1.15rem);
      line-height: 1.6;
      color: #64748b;
      text-align: center;
      max-width: 680px;
      margin-bottom: 56px;
      opacity: 0;
      animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
      animation-delay: 0.4s;
    }

    /* Services Grid Workspace Layout */
    .care-services-section .services-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 24px;
      width: 100%;
      margin-bottom: 56px;
      opacity: 0;
      animation: fadeInUp 0.9s cubic-bezier(0.25, 1, 0.5, 1) forwards;
      animation-delay: 0.5s;
    }

    /* Core Service Card Component */
    .care-services-section .service-card {
      background: #ffffff;
      border-radius: 24px;
      border: 1px solid #f1f5f9;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
      padding: 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;
      transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                  box-shadow 0.4s ease,
                  border-color 0.4s ease;
      cursor: pointer;
    }

    /* Card Interactive State Trigger Hook */
    .care-services-section .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(37, 99, 235, 0.06);
      border-color: #e2e8f0;
    }

    /* Adaptive Responsive Image Configuration Box */
    .care-services-section .image-box {
      width: 100%;
      border-radius: 16px;
      overflow: hidden;
      background-color: #f8fafc;
      position: relative;
      display: block;
      /* Responsive desktop/tablet/mobile height settings mapped cleanly via css variables */
      height: 160px;
    }

    .care-services-section .card-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s ease;
    }

    .care-services-section .service-card:hover .card-img {
      transform: scale(1.05);
    }

    /* Floating Centered Category Icon Element */
    .care-services-section .icon-floating-circle {
      width: 44px;
      height: 44px;
      background-color: #ffffff;
      border-radius: 50%;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      bottom: -22px;
      left: 50%;
      transform: translateX(-50%);
      color: #2563eb;
      z-index: 3;
      border: 1px solid #f1f5f9;
      transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    }

    .care-services-section .service-card:hover .icon-floating-circle {
      background-color: #2563eb;
      color: #ffffff;
      transform: translateX(-50%) scale(1.05);
    }

    .care-services-section .icon-floating-circle svg {
      width: 20px;
      height: 20px;
    }

    /* Content Area Settings inside Cards */
    .care-services-section .card-content {
      margin-top: 36px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .care-services-section .card-content h3 {
      font-size: 1.125rem;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 8px;
      line-height: 1.3;
    }

    .care-services-section .card-content p {
      font-size: 0.875rem;
      color: #64748b;
      line-height: 1.5;
    }

    /* Bottom Centered Direct Interaction Call-To-Actions Trigger Controls */
    .care-services-section .cta-group {
      display: flex;
      justify-content: center;
      gap: 16px;
      width: 100%;
      opacity: 0;
      animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
      animation-delay: 0.7s;
    }

    .care-services-section .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 16px 38px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1rem;
      font-family: inherit;
      cursor: pointer;
      transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .care-services-section .btn svg {
      width: 18px;
      height: 18px;
    }

    /* Primary Filled Interaction State Setup */
    .care-services-section .btn-primary {
      background-color: #1d6bf3;
      color: #ffffff;
      border: 2px solid #1d6bf3;
      box-shadow: 0 8px 24px rgba(29, 107, 243, 0.2);
    }

    .care-services-section .btn-primary:hover {
      background-color: #1154ca;
      border-color: #1154ca;
      transform: translateY(-3px);
      box-shadow: 0 12px 28px rgba(29, 107, 243, 0.3);
    }

    .care-services-section .btn-primary:active {
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(29, 107, 243, 0.2);
    }

    /* Secondary Outlined Interaction State Setup */
    .care-services-section .btn-secondary {
      background-color: transparent;
      color: #1d6bf3;
      border: 2px solid #b4d3fe;
    }

    .care-services-section .btn-secondary:hover {
      border-color: #1d6bf3;
      background-color: #f4f8ff;
      transform: translateY(-3px);
    }

    .care-services-section .btn-secondary:active {
      transform: translateY(-1px);
    }

    /* Core Sequential Loading Keyframe Animations */
    @keyframes fadeInUp {
      0% {
        opacity: 0;
        transform: translateY(30px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInDown {
      0% {
        opacity: 0;
        transform: translateY(-20px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Viewports Optimization Logic Queries */
    @media (max-width: 1200px) {
      .care-services-section .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
      }
    }

    @media (max-width: 900px) {
      .care-services-section .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .care-services-section .image-box {
        height: 180px; /* Tablet view optimized responsive layout scaling heights */
      }
    }

    @media (max-width: 600px) {
      .care-services-section {
        padding: 60px 16px;
      }
      .care-services-section .services-grid {
        grid-template-columns: 1fr;
        gap: 28px;
      }
      .care-services-section .image-box {
        height: 200px; /* Snappy aspect box height for phone layouts */
      }
      .care-services-section .cta-group {
        flex-direction: column;
        width: 100%;
      }
      .care-services-section .btn {
        width: 100%;
      }
    }
  

    .team-section {
      font-family: 'DM Sans', sans-serif;
      background: #fdfeff;
      background: radial-gradient(circle at 10% 20%, rgba(243, 248, 255, 1) 0%, rgba(255, 255, 255, 1) 90%);
      padding: 60px 24px;
      color: #0f172a;
      display: flex;
      justify-content: center;
      align-items: center;
      box-sizing: border-box;
      min-height: 100vh;
    }

    .team-section * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    .team-section .team-container {
      width: 100%;
      max-width: 1200px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    /* Top Badge Button-Style Indicator */
    .team-section .badge-wrapper {
      opacity: 0;
      animation: fadeInDown 0.6s ease forwards;
      animation-delay: 0.1s;
      margin-bottom: 24px;
    }

    .team-section .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background-color: #edf5ff;
      color: #0f172a;
      padding: 8px 18px;
      border-radius: 50px;
      font-size: 0.875rem;
      font-weight: 700;
    }

    .team-section .badge svg {
      width: 14px;
      height: 14px;
      fill: currentColor;
    }

    /* Typography Header Blocks */
    .team-section .team-title {
      font-size: clamp(2rem, 4vw, 2.75rem);
      font-weight: 700;
      color: #0c1a30;
      text-align: center;
      margin-bottom: 16px;
      opacity: 0;
      animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
      animation-delay: 0.2s;
    }

    .team-section .team-subtitle {
      font-size: clamp(0.95rem, 2vw, 1.1rem);
      line-height: 1.6;
      color: #64748b;
      text-align: center;
      max-width: 600px;
      margin-bottom: 48px;
      opacity: 0;
      animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
      animation-delay: 0.4s;
    }

    /* Responsive Grid Layout for Team Cards */
    .team-section .team-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      width: 100%;
      margin-bottom: 40px;
      opacity: 0;
      animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
      animation-delay: 0.5s;
    }

    /* Card Layout & Hover Animation */
    .team-section .team-card {
      background: #ffffff;
      border-radius: 24px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
      border: 1px solid #f1f5f9;
      transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
                  box-shadow 0.4s ease, 
                  border-color 0.4s ease;
      cursor: pointer;
    }

    .team-section .team-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(37, 99, 235, 0.06);
      border-color: #e2e8f0;
    }

    /* Card Image Contexts & Responsive Adjustments */
    .team-section .image-container {
      width: 100%;
      border-radius: 18px;
      overflow: hidden;
      margin-bottom: 20px;
      background-color: #f8fafc;
      aspect-ratio: 1 / 1;
    }

    .team-section .team-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s ease;
    }

    .team-section .team-card:hover .team-img {
      transform: scale(1.04);
    }

    .team-section .member-name {
      font-size: 1.2rem;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 6px;
    }

    .team-section .member-role {
      font-size: 0.95rem;
      color: #64748b;
      font-weight: 500;
    }

    /* Feature Segment Middle Ribbon Bar */
    .team-section .features-ribbon {
      display: inline-flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      background-color: #f4f8ff;
      border-radius: 100px;
      padding: 16px 40px;
      gap: 32px;
      margin-bottom: 48px;
      opacity: 0;
      animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
      animation-delay: 0.6s;
    }

    .team-section .feature-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.95rem;
      color: #334155;
      font-weight: 500;
    }

    .team-section .feature-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      background-color: #ffffff;
      color: #2563eb;
      border-radius: 50%;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    }

    .team-section .feature-icon svg {
      width: 18px;
      height: 18px;
    }

    .team-section .feature-divider {
      color: #cbd5e1;
      font-size: 0.8rem;
    }

    /* Actions Trigger Buttons */
    .team-section .cta-group {
      display: flex;
      justify-content: center;
      gap: 16px;
      width: 100%;
      opacity: 0;
      animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
      animation-delay: 0.7s;
    }

    .team-section .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 16px 36px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1rem;
      font-family: inherit;
      cursor: pointer;
      transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .team-section .btn svg {
      width: 18px;
      height: 18px;
    }

    /* Primary & Secondary States (Hover + Click) */
    .team-section .btn-primary {
      background-color: #1d6bf3;
      color: #ffffff;
      border: 2px solid #1d6bf3;
      box-shadow: 0 8px 24px rgba(29, 107, 243, 0.2);
    }

    .team-section .btn-primary:hover {
      background-color: #1154ca;
      border-color: #1154ca;
      transform: translateY(-3px);
      box-shadow: 0 12px 28px rgba(29, 107, 243, 0.3);
    }

    .team-section .btn-primary:active {
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(29, 107, 243, 0.2);
    }

    .team-section .btn-secondary {
      background-color: transparent;
      color: #1d6bf3;
      border: 2px solid #b4d3fe;
    }

    .team-section .btn-secondary:hover {
      border-color: #1d6bf3;
      background-color: #f4f8ff;
      transform: translateY(-3px);
    }

    .team-section .btn-secondary:active {
      transform: translateY(-1px);
    }

    /* Keyframe Base Core Animations */
    @keyframes fadeInUp {
      0% {
        opacity: 0;
        transform: translateY(30px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInDown {
      0% {
        opacity: 0;
        transform: translateY(-20px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Screen Queries Strategy */
    @media (max-width: 1024px) {
      .team-section .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }
      .team-section .image-container {
        height: 260px;
        aspect-ratio: auto;
      }
    }

    @media (max-width: 768px) {
      .team-section {
        padding: 50px 20px;
      }
      .team-section .features-ribbon {
        border-radius: 24px;
        padding: 16px 24px;
        gap: 16px;
        width: 100%;
      }
      .team-section .feature-divider {
        display: none;
      }
      .team-section .feature-item {
        width: 100%;
        justify-content: flex-start;
      }
    }

    @media (max-width: 480px) {
      .team-section .team-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }
      .team-section .image-container {
        height: 280px;
      }
      .team-section .cta-group {
        flex-direction: column;
        width: 100%;
      }
      .team-section .btn {
        width: 100%;
      }
    }
  

    /* Scoped styling to avoid global collisions */
    .service-areas-section {
      font-family: 'DM Sans', sans-serif;
      background-color: #ffffff;
      padding: 60px 24px;
      color: #0F172A;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .sas-container {
      max-width: 1200px;
      width: 100%;
      margin: 0 auto;
      background: #ffffff;
      border-radius: 24px;
      box-shadow: 0 10px 50px rgba(0, 0, 0, 0.03);
      padding: 40px;
      box-sizing: border-box;
    }

    /* --- Animation Keyframes --- */
    @keyframes sasFadeInUp {
      from {
        opacity: 0;
        transform: translateY(24px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* --- Header Area --- */
    .sas-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .sas-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background-color: #EFF6FF;
      color: #1D4ED8;
      font-size: 14px;
      font-weight: 500;
      padding: 6px 16px;
      border-radius: 9999px;
      opacity: 0;
      animation: sasFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .sas-title {
      font-size: 40px;
      font-weight: 700;
      color: #0B1B3D;
      letter-spacing: -0.5px;
      margin: 16px 0 12px 0;
      line-height: 1.2;
      opacity: 0;
      animation: sasFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
    }

    .sas-subtitle {
      font-size: 18px;
      color: #64748B;
      margin: 0;
      opacity: 0;
      animation: sasFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    }

    /* --- Core Grid Layout --- */
    .sas-main-content {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 40px;
      align-items: center;
      margin-bottom: 48px;
    }

    /* --- Map Image Adjustments --- */
    .sas-map-wrapper {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .sas-map-img {
      width: 100%;
      height: auto;
      object-fit: contain;
      max-width: 480px;
      aspect-ratio: 1 / 1;
    }

    /* --- Cards Structure --- */
    .sas-grid-wrapper {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .sas-card-full {
      grid-column: span 2;
    }

    .sas-card {
      border-radius: 16px;
      padding: 24px;
      transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
      border: 1px solid transparent;
    }

    .sas-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    }

    .sas-card-header {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px;
    }

    .sas-card-header h3 {
      font-size: 16px;
      font-weight: 700;
      margin: 0;
    }

    .sas-card-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      border-radius: 8px;
    }

    /* --- Card Themes --- */
    .sas-blue { background-color: #F0F5FF; border-color: #E0E7FF; }
    .sas-blue .sas-card-header h3 { color: #1E3A8A; }
    .sas-blue .sas-card-icon { background: #DBEAFE; color: #2563EB; }

    .sas-green { background-color: #F0FDF4; border-color: #DCFCE7; }
    .sas-green .sas-card-header h3 { color: #14532D; }
    .sas-green .sas-card-icon { background: #DCFCE7; color: #16A34A; }

    .sas-purple { background-color: #F5F3FF; border-color: #EDE9FE; }
    .sas-purple .sas-card-header h3 { color: #4C1D95; }
    .sas-purple .sas-card-icon { background: #EDE9FE; color: #7C3AED; }

    .sas-yellow { background-color: #FFFBEB; border-color: #FEF3C7; }
    .sas-yellow .sas-card-header h3 { color: #78350F; }
    .sas-yellow .sas-card-icon { background: #FEF3C7; color: #D97706; }

    .sas-gray { background-color: #F8FAFC; border-color: #E2E8F0; }
    .sas-gray .sas-card-header h3 { color: #334155; }
    .sas-gray .sas-card-icon { background: #E2E8F0; color: #475569; }

    /* --- Tags Grid --- */
    .sas-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .sas-tags span {
      background-color: #ffffff;
      color: #475569;
      font-size: 13px;
      font-weight: 500;
      padding: 6px 12px;
      border-radius: 8px;
      border: 1px solid #E2E8F0;
      transition: all 0.2s ease;
      cursor: pointer;
    }

    .sas-tags span:hover {
      background-color: #0062FF;
      color: #ffffff;
      border-color: #0062FF;
      transform: scale(1.03);
    }

    /* --- Bottom Banner --- */
    .sas-footer-banner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #F8FAFC;
      border: 1px solid #E2E8F0;
      border-radius: 20px;
      padding: 24px 32px;
    }

    .sas-footer-left {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .sas-users-icon {
      background: #E2E8F0;
      color: #475569;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .sas-footer-text h4 {
      font-size: 16px;
      font-weight: 700;
      margin: 0 0 4px 0;
      color: #0B1B3D;
    }

    .sas-footer-text p {
      font-size: 14px;
      color: #64748B;
      margin: 0;
    }

    .sas-footer-right {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 8px;
    }

    /* --- Interaction Elements --- */
    .sas-cta-group {
      display: flex;
      gap: 12px;
      opacity: 0;
      animation: sasFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
    }

    .sas-btn-primary, .sas-btn-secondary {
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      font-weight: 700;
      padding: 12px 28px;
      border-radius: 12px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .sas-btn-primary {
      background-color: #0062FF;
      color: #ffffff;
      border: none;
      box-shadow: 0 4px 14px rgba(0, 98, 255, 0.2);
    }

    .sas-btn-primary:hover {
      background-color: #0052D6;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0, 98, 255, 0.3);
    }

    .sas-btn-primary:active {
      transform: translateY(1px);
      box-shadow: 0 2px 8px rgba(0, 98, 255, 0.2);
    }

    .sas-btn-secondary {
      background-color: transparent;
      color: #0062FF;
      border: 2px solid #0062FF;
    }

    .sas-btn-secondary:hover {
      background-color: rgba(0, 98, 255, 0.04);
      transform: translateY(-2px);
    }

    .sas-btn-secondary:active {
      transform: translateY(1px);
    }

    .sas-trust-badge {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      color: #64748B;
    }

    /* --- Responsiveness Media Queries --- */
    @media (max-width: 1024px) {
      .sas-main-content {
        grid-template-columns: 1fr;
        gap: 32px;
      }
      .sas-map-wrapper {
        order: 1; /* Pushes layout image down below text or stacks natively */
      }
      .sas-map-img {
        max-width: 380px;
      }
    }

    @media (max-width: 768px) {
      .sas-container {
        padding: 24px;
      }
      .sas-title {
        font-size: 28px;
      }
      .sas-footer-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 20px;
      }
      .sas-footer-right {
        align-items: flex-start;
        width: 100%;
      }
      .sas-cta-group {
        width: 100%;
      }
      .sas-btn-primary, .sas-btn-secondary {
        flex: 1;
        justify-content: center;
      }
    }

    @media (max-width: 600px) {
      .sas-grid-wrapper {
        grid-template-columns: 1fr;
      }
      .sas-card-full {
        grid-column: span 1;
      }
      .sas-map-img {
        max-width: 280px;
      }
    }
  

    .how-it-works-section {
      font-family: 'DM Sans', sans-serif;
      background: #fdfeff;
      background: radial-gradient(circle at 50% 50%, rgba(244, 249, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
      padding: 80px 24px;
      color: #0f172a;
      display: flex;
      justify-content: center;
      align-items: center;
      box-sizing: border-box;
      min-height: 100vh;
      position: relative;
      overflow: hidden;
    }

    .how-it-works-section * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    /* Ambient background decoration lines mimicking the subtle background patterns */
    .how-it-works-section::before,
    .how-it-works-section::after {
      content: '';
      position: absolute;
      width: 600px;
      height: 600px;
      border: 1px solid rgba(37, 99, 235, 0.03);
      border-radius: 50%;
      pointer-events: none;
    }
    .how-it-works-section::before { top: -200px; left: -200px; }
    .how-it-works-section::after { bottom: -200px; right: -200px; }

    .how-it-works-section .section-container {
      width: 100%;
      max-width: 1200px;
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    /* Top Indicator Badge */
    .how-it-works-section .badge-wrapper {
      opacity: 0;
      animation: fadeInDown 0.6s ease forwards;
      animation-delay: 0.1s;
      margin-bottom: 24px;
    }

    .how-it-works-section .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background-color: #edf5ff;
      color: #0f172a;
      padding: 8px 20px;
      border-radius: 50px;
      font-size: 0.875rem;
      font-weight: 700;
    }

    .how-it-works-section .badge svg {
      width: 14px;
      height: 14px;
      fill: currentColor;
    }

    /* Header Typography Blocks */
    .how-it-works-section .main-title {
      font-size: clamp(2.2rem, 5vw, 3rem);
      font-weight: 700;
      color: #0c1a30;
      text-align: center;
      margin-bottom: 16px;
      opacity: 0;
      animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
      animation-delay: 0.2s;
    }

    .how-it-works-section .sub-title {
      font-size: clamp(1rem, 2vw, 1.15rem);
      line-height: 1.6;
      color: #64748b;
      text-align: center;
      max-width: 620px;
      margin-bottom: 56px;
      opacity: 0;
      animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
      animation-delay: 0.4s;
    }

    /* Steps Cards Grid Workspace Viewports Layout */
    .how-it-works-section .steps-grid {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      gap: 16px;
      margin-bottom: 48px;
      opacity: 0;
      animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
      animation-delay: 0.5s;
    }

    /* Step Card Base Elements */
    .how-it-works-section .step-card {
      background: #ffffff;
      border-radius: 32px;
      padding: 40px 32px;
      text-align: center;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
      border: 1px solid #f1f5f9;
      flex: 1;
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      min-height: 380px;
      transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
                  box-shadow 0.4s ease, 
                  border-color 0.4s ease;
    }

    /* Hover Animation Sequence on Step Cards */
    .how-it-works-section .step-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 24px 48px rgba(37, 99, 235, 0.06);
      border-color: #e2e8f0;
    }

    /* Step Badge Numbers */
    .how-it-works-section .step-number {
      position: absolute;
      top: 28px;
      left: 28px;
      width: 36px;
      height: 36px;
      background-color: #f0f7ff;
      color: #2563eb;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1.1rem;
    }

    /* Adaptive Responsive Image Configuration Containers */
    .how-it-works-section .image-wrapper {
      width: 100%;
      max-width: 180px;
      height: 140px;
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .how-it-works-section .step-img {
      width: 100%;
      height: 100%;
      object-fit: contain; /* Preserves pixel vectors illustration proportions cleanly */
      display: block;
      transition: transform 0.5s ease;
    }

    .how-it-works-section .step-card:hover .step-img {
      transform: scale(1.06);
    }

    /* Card Contents */
    .how-it-works-section .step-card h3 {
      font-size: 1.3rem;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 12px;
      line-height: 1.3;
    }

    .how-it-works-section .step-card p {
      font-size: 0.975rem;
      color: #64748b;
      line-height: 1.6;
    }

    /* Inter-card Directional Flow Arrows Indicators */
    .how-it-works-section .step-arrow {
      display: flex;
      align-items: center;
      justify-content: center;
      color: #cbd5e1;
      padding: 0 8px;
      flex-shrink: 0;
      user-select: none;
    }

    .how-it-works-section .step-arrow svg {
      width: 24px;
      height: 24px;
    }

    /* Horizontal Middle Features Ribbon Bar Container */
    .how-it-works-section .features-ribbon {
      display: inline-flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      background-color: #f1f7fe;
      border-radius: 100px;
      padding: 16px 36px;
      gap: 28px;
      margin-bottom: 48px;
      opacity: 0;
      animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
      animation-delay: 0.6s;
    }

    .how-it-works-section .feature-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.95rem;
      color: #334155;
      font-weight: 500;
    }

    .how-it-works-section .feature-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      background-color: #ffffff;
      color: #2563eb;
      border-radius: 50%;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
    }

    .how-it-works-section .feature-icon svg {
      width: 16px;
      height: 16px;
    }

    .how-it-works-section .feature-divider {
      color: #cbd5e1;
      font-size: 0.8rem;
    }

    /* Centralized Action Buttons Trigger System Setup */
    .how-it-works-section .cta-group {
      display: flex;
      justify-content: center;
      gap: 16px;
      width: 100%;
      opacity: 0;
      animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
      animation-delay: 0.7s;
    }

    .how-it-works-section .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 16px 38px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1rem;
      font-family: inherit;
      cursor: pointer;
      transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .how-it-works-section .btn svg {
      width: 18px;
      height: 18px;
    }

    /* Button Primary Interactions (Hover + Click States) */
    .how-it-works-section .btn-primary {
      background-color: #1d6bf3;
      color: #ffffff;
      border: 2px solid #1d6bf3;
      box-shadow: 0 8px 24px rgba(29, 107, 243, 0.2);
    }

    .how-it-works-section .btn-primary:hover {
      background-color: #1154ca;
      border-color: #1154ca;
      transform: translateY(-3px);
      box-shadow: 0 12px 28px rgba(29, 107, 243, 0.3);
    }

    .how-it-works-section .btn-primary:active {
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(29, 107, 243, 0.2);
    }

    /* Button Secondary Interactions (Hover + Click States) */
    .how-it-works-section .btn-secondary {
      background-color: transparent;
      color: #1d6bf3;
      border: 2px solid #b4d3fe;
    }

    .how-it-works-section .btn-secondary:hover {
      border-color: #1d6bf3;
      background-color: #f4f8ff;
      transform: translateY(-3px);
    }

    .how-it-works-section .btn-secondary:active {
      transform: translateY(-1px);
    }

    /* Structural Core Animations Keyframes definitions */
    @keyframes fadeInUp {
      0% {
        opacity: 0;
        transform: translateY(30px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInDown {
      0% {
        opacity: 0;
        transform: translateY(-20px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Adaptive Responsive Display Screen Queries */
    @media (max-width: 1024px) {
      .how-it-works-section .steps-grid {
        gap: 8px;
      }
      .how-it-works-section .step-card {
        padding: 32px 20px;
        min-height: 360px;
      }
      .how-it-works-section .image-wrapper {
        height: 120px;
        max-width: 150px;
      }
    }

    @media (max-width: 768px) {
      .how-it-works-section {
        padding: 60px 20px;
      }
      .how-it-works-section .steps-grid {
        flex-direction: column;
        gap: 24px;
      }
      .how-it-works-section .step-card {
        width: 100%;
        min-height: auto;
        padding: 40px 32px;
      }
      .how-it-works-section .step-arrow {
        transform: rotate(90deg);
        padding: 8px 0;
      }
      .how-it-works-section .features-ribbon {
        border-radius: 28px;
        padding: 20px 24px;
        gap: 16px;
        width: 100%;
      }
      .how-it-works-section .feature-divider {
        display: none;
      }
      .how-it-works-section .feature-item {
        width: 100%;
        justify-content: flex-start;
      }
    }

    @media (max-width: 480px) {
      .how-it-works-section .step-card {
        padding: 32px 20px;
      }
      .how-it-works-section .step-number {
        top: 20px;
        left: 20px;
        width: 32px;
        height: 32px;
        font-size: 1rem;
      }
      .how-it-works-section .image-wrapper {
        height: 110px;
        max-width: 140px;
      }
      .how-it-works-section .cta-group {
        flex-direction: column;
        width: 100%;
      }
      .how-it-works-section .btn {
        width: 100%;
      }
    }
  

    .contact-section {
      font-family: 'DM Sans', sans-serif;
      background: #fdfeff;
      background: radial-gradient(circle at 50% 50%, rgba(244, 249, 255, 0.9) 0%, rgba(255, 255, 255, 1) 100%);
      padding: 80px 24px;
      color: #0f172a;
      display: flex;
      justify-content: center;
      align-items: center;
      box-sizing: border-box;
      min-height: 100vh;
      position: relative;
    }

    .contact-section * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    .contact-section .container {
      width: 100%;
      max-width: 1240px;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 64px;
      align-items: start;
    }

    /* --- Left Content Column --- */
    .contact-section .content-column {
      display: flex;
      flex-direction: column;
    }

    .contact-section .badge-wrapper {
      opacity: 0;
      animation: contactFadeInDown 0.6s ease forwards;
      animation-delay: 0.1s;
      margin-bottom: 24px;
    }

    .contact-section .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background-color: #edf5ff;
      color: #0f172a;
      padding: 8px 18px;
      border-radius: 50px;
      font-size: 0.875rem;
      font-weight: 700;
    }

    .contact-section .badge svg {
      width: 14px;
      height: 14px;
      fill: currentColor;
    }

    .contact-section .main-title {
      font-size: clamp(2.2rem, 4.5vw, 3.2rem);
      font-weight: 700;
      color: #0c1a30;
      line-height: 1.2;
      margin-bottom: 16px;
      opacity: 0;
      animation: contactFadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
      animation-delay: 0.2s;
    }

    .contact-section .divider-line {
      width: 48px;
      height: 4px;
      background-color: #2563eb;
      border-radius: 2px;
      margin-bottom: 24px;
      opacity: 0;
      animation: contactFadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
      animation-delay: 0.3s;
    }

    .contact-section .sub-title {
      font-size: clamp(1rem, 2vw, 1.15rem);
      line-height: 1.6;
      color: #64748b;
      margin-bottom: 40px;
      max-width: 520px;
      opacity: 0;
      animation: contactFadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
      animation-delay: 0.4s;
    }

    /* Features List Block */
    .contact-section .features-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-bottom: 32px;
      opacity: 0;
      animation: contactFadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
      animation-delay: 0.5s;
    }

    .contact-section .feature-card {
      display: flex;
      align-items: center;
      gap: 16px;
      background: #ffffff;
      padding: 16px 24px;
      border-radius: 16px;
      border: 1px solid #f1f5f9;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
      transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    }

    .contact-section .feature-card:hover {
      transform: translateX(6px);
      box-shadow: 0 10px 24px rgba(37, 99, 235, 0.04);
    }

    .contact-section .feature-icon-box {
      width: 44px;
      height: 44px;
      background-color: #f0f7ff;
      color: #2563eb;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .contact-section .feature-icon-box svg {
      width: 20px;
      height: 20px;
    }

    .contact-section .feature-text h4 {
      font-size: 1rem;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 2px;
    }

    .contact-section .feature-text p {
      font-size: 0.875rem;
      color: #64748b;
    }

    /* Adaptive Responsive Main Image Box Container */
    .contact-section .adaptive-image-container {
      width: 100%;
      border-radius: 24px;
      overflow: hidden;
      background-color: #f8fafc;
      border: 1px solid #e2e8f0;
      opacity: 0;
      animation: contactFadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
      animation-delay: 0.6s;
      /* Dynamic Adaptive Responsive Sizing heights across device classes */
      height: 240px;
    }

    .contact-section .adaptive-care-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* --- Right Form Card Column --- */
    .contact-section .form-column {
      opacity: 0;
      animation: contactFadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
      animation-delay: 0.5s;
    }

    .contact-section .form-card {
      background: #ffffff;
      border-radius: 32px;
      padding: 40px;
      box-shadow: 0 20px 50px rgba(15, 23, 42, 0.04);
      border: 1px solid #f1f5f9;
      position: relative;
      overflow: hidden;
    }

    .contact-section .form-header {
      margin-bottom: 28px;
    }

    .contact-section .form-header h3 {
      font-size: 1.5rem;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 8px;
    }

    .contact-section .form-header p {
      font-size: 0.95rem;
      color: #64748b;
      line-height: 1.5;
    }

    /* Form Setup & UI Error Handling elements styling */
    .contact-section .main-care-form {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .contact-section .input-group {
      position: relative;
      display: flex;
      flex-direction: column;
    }

    .contact-section .input-icon-wrapper {
      position: relative;
      display: flex;
      align-items: center;
    }

    .contact-section .input-icon-wrapper svg {
      position: absolute;
      left: 16px;
      width: 18px;
      height: 18px;
      color: #94a3b8;
      pointer-events: none;
      transition: color 0.3s ease;
    }

    .contact-section .form-input,
    .contact-section .form-select,
    .contact-section .form-textarea {
      width: 100%;
      padding: 14px 16px 14px 48px;
      border-radius: 12px;
      border: 1px solid #cbd5e1;
      font-family: inherit;
      font-size: 0.95rem;
      color: #0f172a;
      background-color: #ffffff;
      outline: none;
      transition: all 0.3s ease;
    }

    .contact-section .form-textarea {
      padding: 14px 16px;
      min-height: 100px;
      resize: vertical;
    }

    .contact-section .form-select {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 16px center;
      background-size: 14px;
    }

    /* Interactive Field Focus and validation styling blocks */
    .contact-section .form-input:focus,
    .contact-section .form-select:focus,
    .contact-section .form-textarea:focus {
      border-color: #2563eb;
      box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    }

    .contact-section .form-input:focus + svg,
    .contact-section .form-select:focus + svg {
      color: #2563eb;
    }

    /* Client side UI Error Handling configurations */
    .contact-section .error-message {
      font-size: 0.8rem;
      color: #ef4444;
      margin-top: 4px;
      font-weight: 500;
      display: none;
    }

    /* Class hook to toggle runtime client validation anomalies */
    .contact-section .input-group.has-error .form-input,
    .contact-section .input-group.has-error .form-select {
      border-color: #ef4444;
      background-color: #fffafb;
    }
    
    .contact-section .input-group.has-error .error-message {
      display:block;
    }

    /* Form Dynamic Actions Buttons Group Layout */
    .contact-section .submit-btn {
      width: 100%;
      background-color: #1d6bf3;
      color: #ffffff;
      border: 2px solid #1d6bf3;
      padding: 16px 24px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1rem;
      font-family: inherit;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      box-shadow: 0 8px 24px rgba(29, 107, 243, 0.2);
      transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .contact-section .submit-btn svg {
      width: 18px;
      height: 18px;
    }

    .contact-section .submit-btn:hover {
      background-color: #1154ca;
      border-color: #1154ca;
      transform: translateY(-3px);
      box-shadow: 0 12px 28px rgba(29, 107, 243, 0.3);
    }

    .contact-section .submit-btn:active {
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(29, 107, 243, 0.2);
    }

    .contact-section .form-separator {
      display: flex;
      align-items: center;
      text-align: center;
      color: #0f172a;
      font-size: 0.875rem;
      margin: 6px 0;
    }

    .contact-section .form-separator::before,
    .contact-section .form-separator::after {
      content: '';
      flex: 1;
      border-bottom: 1px solid #e2e8f0;
    }

    .contact-section .form-separator:not(:empty)::before { margin-right: .75em; }
    .contact-section .form-separator:not(:empty)::after { margin-left: .75em; }

    /* Interactive Outlined Phone Action Bar Button */
    .contact-section .phone-cta-btn {
      width: 100%;
      background-color: transparent;
      color: #1d6bf3;
      border: 2px solid #b4d3fe;
      padding: 16px 24px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1.05rem;
      font-family: inherit;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: all 0.25s ease;
    }

    .contact-section .phone-cta-btn svg {
      width: 18px;
      height: 18px;
    }

    .contact-section .phone-cta-btn:hover {
      border-color: #1d6bf3;
      background-color: #f4f8ff;
      transform: translateY(-3px);
    }

    .contact-section .phone-cta-btn:active {
      transform: translateY(-1px);
    }

    /* Success Overlap Presentation Board Layer */
    .contact-section .success-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #ffffff;
      z-index: 10;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 40px;
      text-align: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }

    /* Target class workflow configuration to call up success state screen template layers */
    .contact-section .form-card.is-submitted .success-overlay {
      opacity: 1;
      pointer-events: auto;
    }

    .contact-section .success-icon-box {
      width: 64px;
      height: 64px;
      background-color: #dcfce7;
      color: #15803d;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .contact-section .success-icon-box svg {
      width: 32px;
      height: 32px;
    }

    .contact-section .success-overlay h3 {
      font-size: 1.6rem;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 12px;
    }

    .contact-section .success-overlay p {
      font-size: 0.975rem;
      color: #64748b;
      line-height: 1.6;
      max-width: 320px;
    }

    /* --- Base System Keyframe Definitions --- */
    @keyframes contactFadeInUp {
      0% {
        opacity: 0;
        transform: translateY(30px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes contactFadeInDown {
      0% {
        opacity: 0;
        transform: translateY(-20px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* --- Viewports Optimization Framework Media Queries --- */
    @media (max-width: 1024px) {
      .contact-section .container {
        grid-template-columns: 1fr;
        gap: 48px;
      }
      .contact-section .adaptive-image-container {
        height: 320px; /* Tablet device structural portrait expansion adjustments */
      }
    }

    @media (max-width: 600px) {
      .contact-section {
        padding: 60px 16px;
      }
      .contact-section .form-card {
        padding: 32px 20px;
      }
      .contact-section .adaptive-image-container {
        height: 220px; /* Snappy compact phone screen heights block layout overrides */
      }
    }
  


/* Call Popup Styles */
.call-popup {
  position: fixed;
  z-index: 9999;
  left: 50%;
  transform: translate(-50%, -150%); /* Hidden top by default on desktop */
  background: white;
  padding: 8px;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  /* Desktop default is top */
  top: 20px;
}
.call-popup.show {
  transform: translate(-50%, 0);
}
.call-popup .popup-btn {
  font-family: 'DM Sans', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0066ff;
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 40px;
  font-size: 1.1rem;
  transition: background-color 0.2s ease;
}
.call-popup .popup-btn:hover {
  background-color: #0052cc;
}

/* Mobile: Bottom */
@media (max-width: 767px) {
  .call-popup {
    top: auto;
    bottom: 20px;
    transform: translate(-50%, 150%); /* Hidden bottom */
  }
  .call-popup.show {
    transform: translate(-50%, 0);
  }
}


a.btn, .btn, .submit-btn, button {
  text-decoration: none !important;
}
