/* CSS reset and base */
    * { margin: 0; padding: 0; box-sizing: border-box; }
    :root {
      --red-primary: #8B0000;
      --red-mid: #B22222;
      --red-dark: #5C0000;
      --red-shadow: #2C0000;
      --white: #FFFFFF;
      --off-white: #FDF5F5;
      --light-grey: #F4EEEE;
      --text-dark: #1A0000;
      --text-mid: #4A1010;
      --text-muted: #888888;
      --border: rgba(139,0,0,0.20);
      --red-glow: 0 4px 24px rgba(139,0,0,0.18);
      
      --font-heading: 'Cormorant Garamond', serif;
      --font-nav: 'Montserrat', sans-serif;
      --font-body: 'Lato', sans-serif;
    }
    body {
      font-family: var(--font-body);
      color: var(--text-dark);
      background-color: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
    }
    h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-heading);
      color: var(--red-primary);
    }
    a { text-decoration: none; }
    ul { list-style: none; }
    .btn {
      font-family: var(--font-nav);
      display: inline-block;
      text-align: center;
      cursor: pointer;
      border-radius: 6px;
      transition: all 0.3s ease;
      font-weight: 600;
      padding: 12px 24px;
      font-size: 13px;
    }
    .btn-red-solid {
      background-color: var(--red-primary);
      color: var(--white);
      border: 1px solid var(--red-primary);
    }
    .btn-red-solid:hover {
      background-color: var(--red-mid);
      border-color: var(--red-mid);
    }
    .btn-red-outline {
      background-color: transparent;
      color: var(--red-primary);
      border: 1px solid var(--red-primary);
    }
    .btn-red-outline:hover {
      background-color: var(--red-primary);
      color: var(--white);
    }
    .btn-white-solid {
      background-color: var(--white);
      color: var(--red-primary);
      border: 1px solid var(--white);
    }
    .btn-white-solid:hover {
      box-shadow: var(--red-glow);
      transform: translateY(-2px);
    }
    .btn-white-outline {
      background-color: transparent;
      color: var(--white);
      border: 1px solid var(--white);
    }
    .btn-white-outline:hover {
      background-color: var(--white);
      color: var(--red-primary);
    }

    /* Common Section Styles */
    section {
      padding: 80px 5%;
    }
    .section-header {
      text-align: center;
      margin-bottom: 50px;
    }
    .section-title {
      font-size: 44px;
      font-weight: 700;
      margin-bottom: 20px;
    }
    .section-divider {
      width: 60px;
      height: 3px;
      background-color: var(--red-primary);
      margin: 0 auto;
    }

    /* Navigation */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background-color: var(--white);
      border-bottom: 2px solid var(--red-primary);
      z-index: 1000;
      transition: box-shadow 0.3s ease;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 5%;
    }
    .navbar.scrolled {
      box-shadow: 0 2px 20px rgba(139,0,0,0.10);
    }
    .nav-logo {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
    .nav-logo img {
      height: auto;
      max-height: 120px; /* Optional max to prevent it from blowing out of navbar too much if width is huge */
      display: block;
    }
    .logo-text-1 {
      font-family: var(--font-heading);
      font-size: 28px;
      font-weight: 700;
      color: var(--red-primary);
      line-height: 1;
    }
    .logo-text-2 {
      font-family: var(--font-nav);
      font-size: 11px;
      color: var(--red-dark);
      letter-spacing: 4px;
    }
    
    /* Navbar Logo Image */
    .nav-logo { display: flex; align-items: center; gap: 12px; }
    .nav-logo-img { width: 256px; height: auto; object-fit: contain; flex-shrink: 0; }
    .nav-logo-text { display: none; }
    @media (max-width: 768px) {
      .nav-logo-img { width: 144px; height: auto; }
    }

    .nav-links {
      display: flex;
      gap: 30px;
    }
    .nav-links a {
      font-family: var(--font-nav);
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--text-dark);
      position: relative;
      font-weight: 500;
      padding-bottom: 5px;
      transition: color 0.3s ease;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 0;
      background-color: var(--red-primary);
      transition: width 0.3s ease;
    }
    .nav-links a:hover, .nav-links a.active {
      color: var(--red-primary);
    }
    .nav-links a:hover::after, .nav-links a.active::after {
      width: 100%;
    }
    .nav-links a.active {
      font-weight: 700;
    }
    .nav-ctas {
      display: flex;
      gap: 15px;
    }
    .hamburger {
      display: none;
      font-size: 24px;
      color: var(--red-primary);
      cursor: pointer;
    }

    /* Mobile Nav Overlay */
    .mobile-nav-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background-color: var(--white);
      z-index: 999;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      transform: translateX(100%);
      transition: transform 0.4s ease;
    }
    .mobile-nav-overlay.open {
      transform: translateX(0);
    }
    .mobile-nav-overlay a {
      font-family: var(--font-nav);
      font-size: 20px;
      color: var(--red-primary);
      margin: 15px 0;
      text-transform: uppercase;
      letter-spacing: 2px;
    }
    .mobile-nav-close {
      position: absolute;
      top: 25px;
      right: 5%;
      font-size: 30px;
      color: var(--red-primary);
      cursor: pointer;
    }

    /* Section 1 - Page Hero Banner */
    .about-hero {
      position: relative;
      height: 60vh;
      min-height: 380px;
      margin-top: 80px;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      overflow: hidden;
      padding: 0 5%;
    }
    .ah-bg {
      position: absolute;
      inset: 0;
      background: url('../img/about-hero.jpg') center/cover no-repeat;
      transform: scale(1.05);
      transition: transform 8s ease;
      z-index: 1;
    }
    .about-hero:hover .ah-bg { transform: scale(1); }
    .ah-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(44,0,0,0.75) 0%, rgba(139,0,0,0.55) 100%);
      z-index: 2;
    }
    .about-hero-content { position: relative; z-index: 3; }
    .ah-eyebrow {
      font-family: var(--font-nav);
      font-size: 11px;
      letter-spacing: 5px;
      color: rgba(255,255,255,0.70);
      text-transform: uppercase;
      margin-bottom: 12px;
      display: block;
    }
    .breadcrumb {
      font-family: var(--font-nav);
      font-size: 12px;
      color: rgba(255,255,255,0.60);
      margin-bottom: 15px;
      letter-spacing: 1px;
    }
    .breadcrumb a { color: var(--white); }
    .breadcrumb span { margin: 0 8px; }
    .about-hero h1 {
      font-size: 66px;
      color: var(--white);
      font-weight: 700;
      margin-bottom: 18px;
      line-height: 1.05;
    }
    .about-hero h1 span { color: rgba(255,200,200,0.90); }
    .about-hero .hero-divider {
      width: 80px;
      height: 3px;
      background-color: rgba(255,255,255,0.45);
      margin: 0 auto 18px auto;
    }
    .about-hero p {
      font-family: var(--font-heading);
      font-size: 20px;
      font-style: italic;
      color: rgba(255,255,255,0.85);
    }
    @media (max-width: 768px) {
      .about-hero { height: 50vh; }
      .about-hero h1 { font-size: 42px; }
      .about-hero p { font-size: 17px; }
    }

    /* Section 2 - Our Story */
    .our-story {
      background-color: var(--white);
    }
    .story-container {
      display: flex;
      align-items: center;
      gap: 60px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .story-left {
      width: 55%;
    }
    .story-sub {
      font-family: var(--font-nav);
      font-size: 11px;
      color: var(--red-primary);
      letter-spacing: 5px;
      display: block;
      margin-bottom: 15px;
      font-weight: 600;
    }
    .story-left h2 {
      font-size: 40px;
      color: var(--text-dark);
      line-height: 1.2;
      margin-bottom: 20px;
    }
    .story-divider {
      width: 60px;
      height: 3px;
      background-color: var(--red-primary);
      margin-bottom: 30px;
    }
    .story-left p {
      font-size: 15px;
      color: var(--text-mid);
      line-height: 1.85;
      margin-bottom: 20px;
    }
    .story-link {
      font-family: var(--font-nav);
      font-size: 13px;
      color: var(--red-primary);
      font-weight: 600;
      display: inline-block;
      margin-top: 10px;
    }
    .story-link:hover {
      text-decoration: underline;
    }

    .story-right {
      width: 45%;
    }
    .story-card {
      background-color: var(--white);
      border: 2px solid var(--red-primary);
      box-shadow: var(--red-glow);
      border-radius: 8px;
      padding: 50px 40px;
      text-align: center;
      position: relative;
    }
    .story-card::before {
      content: '';
      position: absolute;
      top: 10px; left: 10px; right: -10px; bottom: -10px;
      border: 1px solid var(--border);
      border-radius: 8px;
      z-index: -1;
    }
    .sc-est {
      font-family: var(--font-nav);
      font-size: 12px;
      color: var(--red-primary);
      letter-spacing: 6px;
      font-weight: 600;
      display: block;
    }
    .sc-year {
      font-family: var(--font-heading);
      font-size: 88px;
      color: var(--red-primary);
      font-weight: 700;
      line-height: 1;
      margin: 10px 0;
    }
    .sc-divider {
      width: 40px;
      height: 1px;
      background-color: var(--border);
      margin: 15px auto;
    }
    .sc-brand {
      font-family: var(--font-nav);
      font-size: 13px;
      color: var(--text-dark);
      letter-spacing: 4px;
      font-weight: 600;
      margin-bottom: 30px;
      display: block;
    }
    .sc-badges {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
    }
    .sc-badge {
      background-color: var(--white);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 6px 12px;
      font-family: var(--font-nav);
      font-size: 11px;
      color: var(--red-primary);
      font-weight: 500;
    }

    /* Section 3 - Mission | Vision | Values */
    .mvv-section {
      background-color: var(--off-white);
    }
    .mvv-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .mvv-card {
      background-color: var(--white);
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
      border-top: 5px solid var(--red-primary);
      border-radius: 6px;
      padding: 40px 30px;
      transition: transform 0.3s ease;
    }
    .mvv-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--red-glow);
    }
    .mvv-icon {
      font-family: var(--font-nav);
      font-size: 32px;
      display: block;
      margin-bottom: 20px;
    }
    .mvv-card h3 {
      font-size: 26px;
      color: var(--red-primary);
      margin-bottom: 15px;
    }
    .mvv-card p {
      font-size: 14px;
      color: var(--text-mid);
      line-height: 1.8;
      text-align: justify;
    }
    .mvv-list {
      margin-top: 10px;
    }
    .mvv-list li {
      font-size: 14px;
      color: var(--text-mid);
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .mvv-list li::before {
      content: '•';
      color: var(--red-primary);
      font-weight: bold;
      font-size: 18px;
    }

    /* Section 4 - Achievements Stats Bar */
    .stats-bar {
      background-color: var(--red-primary);
      padding: 60px 5%;
    }
    .stats-grid {
      display: flex;
      justify-content: space-between;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }
    .stat-item {
      flex: 1;
      border-right: 1px solid rgba(255,255,255,0.2);
      padding: 0 20px;
    }
    .stat-item:last-child {
      border-right: none;
    }
    .stat-num {
      font-family: var(--font-heading);
      font-size: 54px;
      color: var(--white);
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 5px;
    }
    .stat-label {
      font-family: var(--font-nav);
      font-size: 12px;
      color: rgba(255,255,255,0.75);
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    /* Section 5 - Our Team */
    .team-section {
      background-color: var(--white);
    }
    /* Executive Leaders */
    .leader-row {
      display: flex;
      align-items: center;
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto 60px auto;
      background-color: var(--off-white);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    }
    .leader-row.reverse {
      flex-direction: row-reverse;
    }
    .leader-img {
      width: 40%;
      height: 400px;
    }
    .leader-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .leader-content {
      width: 60%;
      padding: 40px;
    }
    .leader-name {
      font-size: 32px;
      color: var(--red-primary);
      margin-bottom: 5px;
      font-weight: 700;
    }
    .leader-role {
      font-family: var(--font-nav);
      font-size: 14px;
      color: var(--text-dark);
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 600;
      margin-bottom: 20px;
    }
    .leader-bio {
      font-size: 15px;
      color: var(--text-mid);
      line-height: 1.8;
      text-align: justify;
    }
    .team-carousel-container {
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 50px;
    }
    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: var(--white);
      color: var(--red-primary);
      border: 2px solid var(--red-primary);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      font-size: 20px;
      font-weight: bold;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      z-index: 10;
      transition: all 0.3s ease;
      box-shadow: 0 4px 10px rgba(139,0,0,0.1);
    }
    .carousel-btn:hover {
      background-color: var(--red-primary);
      color: var(--white);
      box-shadow: var(--red-glow);
    }
    #teamPrevBtn {
      left: 0;
    }
    #teamNextBtn {
      right: 0;
    }
    .team-carousel-wrapper {
      overflow: hidden;
      width: 100%;
    }
    .team-grid {
      display: flex;
      gap: 40px;
      transition: transform 0.5s ease-in-out;
    }
    .team-card {
      flex: 0 0 calc(33.333% - 27px); /* 40px gap total / 3 items approx */
      min-width: 300px;
      background-color: var(--white);
      box-shadow: var(--red-glow);
      border-radius: 6px;
      padding: 40px 20px;
      text-align: center;
      border: 1px solid transparent;
      transition: all 0.3s ease;
    }
    .team-card:hover {
      border-color: var(--red-primary);
      transform: translateY(-5px);
    }
    .team-avatar {
      width: 160px;
      height: 160px;
      background-color: var(--off-white);
      border: 4px solid var(--red-primary);
      border-radius: 50%;
      margin: 0 auto 20px auto;
      display: flex;
      justify-content: center;
      align-items: center;
      font-family: var(--font-heading);
      font-size: 28px;
      color: var(--red-primary);
      font-weight: 700;
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(139, 0, 0, 0.15);
    }
    .team-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .team-name {
      font-size: 22px;
      color: var(--text-dark);
      font-weight: 700;
      margin-bottom: 5px;
    }
    .team-role {
      font-family: var(--font-nav);
      font-size: 12px;
      color: var(--red-primary);
      letter-spacing: 1px;
      font-weight: 500;
      margin-bottom: 15px;
    }
    .team-divider {
      width: 30px;
      height: 1px;
      background-color: var(--border);
      margin: 0 auto 15px auto;
    }
    .team-bio {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 20px;
    }
    .team-social {
      font-family: var(--font-nav);
      font-size: 12px;
      color: var(--red-primary);
      font-weight: 600;
      display: inline-block;
    }
    .team-social:hover {
      text-decoration: underline;
    }

    /* Section 6 - Certifications & Banking */
    .cert-section {
      background-color: var(--off-white);
    }
    .cert-container {
      max-width: 1000px;
      margin: 0 auto;
    }
    .cert-row-heading {
      font-family: var(--font-nav);
      font-size: 12px;
      color: var(--red-primary);
      letter-spacing: 2px;
      font-weight: 600;
      margin-bottom: 20px;
      text-align: center;
    }
    .cert-row {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 50px;
    }
    .cert-row:last-child {
      margin-bottom: 0;
    }
    .cert-tile {
      background-color: var(--white);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 15px 25px;
      min-height: 64px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-family: var(--font-nav);
      font-size: 13px;
      color: var(--text-dark);
      font-weight: 600;
      text-align: center;
      transition: border-color 0.3s;
      flex: 1;
      min-width: 150px;
      max-width: 144px;
    }
    .cert-tile:hover {
      border-color: var(--red-primary);
      box-shadow: 0 4px 10px rgba(139,0,0,0.05);
    }

    /* Section 7 - How We Work (Timeline) */
    .timeline-section {
      background-color: var(--white);
    }
    .timeline-container {
      position: relative;
      max-width: 1000px;
      margin: 0 auto;
      padding-top: 30px;
    }
    .timeline-line {
      position: absolute;
      top: 55px; /* aligned with center of circles (30px pt + 26px radius) */
      left: 10%;
      right: 10%;
      height: 3px;
      background-color: var(--red-primary);
      z-index: 1;
    }
    .timeline-steps {
      display: flex;
      justify-content: space-between;
      position: relative;
      z-index: 2;
    }
    .step {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      width: 150px;
    }
    .step-circle {
      width: 52px;
      height: 52px;
      background-color: var(--red-primary);
      color: var(--white);
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-family: var(--font-heading);
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 20px;
      border: 4px solid var(--white);
      box-shadow: 0 0 0 2px var(--red-primary);
    }
    .step-title {
      font-family: var(--font-nav);
      font-size: 14px;
      color: var(--text-dark);
      font-weight: 600;
      margin-bottom: 10px;
    }
    .step-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* CTA Banner */
    .cta-banner {
      background-color: var(--red-dark);
      padding: 80px 5%;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-banner::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 2px, transparent 2px, transparent 15px);
    }
    .cta-content {
      position: relative;
      z-index: 2;
    }
    .cta-banner h2 {
      font-size: 44px;
      color: var(--white);
      margin-bottom: 15px;
    }
    .cta-banner p {
      font-size: 16px;
      color: rgba(255,255,255,0.80);
      margin-bottom: 30px;
    }
    .cta-btns {
      display: flex;
      justify-content: center;
      gap: 15px;
    }

    /* Footer */
    .footer {
      background-color: var(--red-shadow);
      color: var(--white);
      border-top: 4px solid var(--red-primary);
    }
    .footer-top {
      padding: 60px 5%;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 40px;
    }
    .footer-col h4 {
      font-family: var(--font-nav);
      font-size: 12px;
      color: var(--red-mid);
      letter-spacing: 3px;
      margin-bottom: 20px;
    }
    .footer-brand .logo-text-1 { color: var(--white); }
    .footer-brand .logo-text-2 { color: var(--red-mid); }
    .footer-tagline {
      font-family: var(--font-heading);
      font-size: 16px;
      font-style: italic;
      margin-top: 10px;
      margin-bottom: 15px;
    }
    .footer-desc {
      font-size: 13px;
      color: rgba(255,255,255,0.65);
      margin-bottom: 20px;
      line-height: 1.6;
    }
    .social-links { display: flex; gap: 15px; }
    .social-links a {
      color: var(--white);
      font-size: 13px;
      font-family: var(--font-nav);
      transition: color 0.3s;
    }
    .social-links a:hover { color: var(--red-mid); }
    .footer-col ul li { margin-bottom: 12px; }
    .footer-col ul a, .footer-col .contact-info p, .footer-col .contact-info a {
      font-size: 14px;
      color: var(--white);
      transition: color 0.3s;
    }
    .footer-col ul a:hover, .footer-col .contact-info a:hover { color: var(--red-mid); }
    .contact-info p { margin-bottom: 12px; display: flex; align-items: flex-start; gap: 10px; }
    .footer-bottom {
      background-color: var(--text-dark);
      padding: 20px 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .footer-bottom p { font-size: 12px; color: var(--text-muted); }
    .footer-links a { font-size: 12px; color: var(--red-mid); margin-left: 15px; }
    .footer-links a:hover { color: var(--white); }

    /* Floating Action Buttons */
    .fab-container {
      position: fixed;
      bottom: 30px;
      right: 30px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      z-index: 1000;
    }
    .fab {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 20px;
      box-shadow: 0 4px 16px rgba(139,0,0,0.40);
      transition: transform 0.3s ease;
      text-decoration: none;
      position: relative;
    }
    .fab:hover { transform: scale(1.10); }
    .fab-call { background-color: var(--red-primary); }
    .fab-wa { background-color: var(--red-mid); }
    .pulse-ring {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      border: 2px solid var(--red-mid);
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0% { transform: scale(1); opacity: 0.8; }
      100% { transform: scale(1.5); opacity: 0; }
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .story-container { flex-direction: column; gap: 40px; }
      .story-left, .story-right { width: 100%; }
      .mvv-grid { grid-template-columns: 1fr; }
      .team-grid { grid-template-columns: repeat(2, 1fr); }
      .leader-row, .leader-row.reverse { flex-direction: column; }
      .leader-img, .leader-content { width: 100%; }
      .leader-img { height: 350px; }
      .leader-content { padding: 30px; }
    }
    @media (max-width: 768px) {
      .nav-links, .nav-ctas { display: none; }
      .hamburger { display: block; }
      .about-hero h1 { font-size: 40px; }
      .stats-grid { flex-direction: column; gap: 30px; }
      .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 20px; }
      .stat-item:last-child { border-bottom: none; }
      .team-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr 1fr; }
      
      /* Mobile Timeline */
      .timeline-line {
        left: 26px; /* align with center of 52px circle */
        top: 0;
        height: 100%;
        width: 3px;
      }
      .timeline-steps {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
      }
      .step {
        flex-direction: row;
        width: 100%;
        text-align: left;
        gap: 20px;
      }
      .step-circle {
        margin-bottom: 0;
        flex-shrink: 0;
      }
      .step-text {
        flex: 1;
      }
      .step-desc {
        max-width: none;
      }
    }
    @media (max-width: 480px) {
      .footer-top { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
      .cta-btns { flex-direction: column; }
    }

@media (max-width: 768px) { .team-card { flex: 0 0 100%; min-width: 100%; } .team-carousel-container { padding: 0 40px; } .carousel-btn { width: 35px; height: 35px; font-size: 16px; } }
