
    :root {
      --dark: #0A1F1C;
      --brand-dark: #6B775A;
      --brand-light: #A8B38A;
      --green: var(--brand-dark);
      --light: #F8FAF9;
      --text: #1A1A1A;
      --gray: #7A7A7A;
      --card: #ffffff;
      --border: #e6e6e6;
      --radius: 18px;
      --shadow-lg: 0 24px 48px rgba(0, 0, 0, .08);
      --shadow-md: 0 12px 28px rgba(0, 0, 0, .07);
      --shadow-sm: 0 6px 16px rgba(0, 0, 0, .06);
      --gradient-brand: linear-gradient(90deg, var(--brand-dark), var(--brand-light));
      /* §14 — Responsive CSS Custom Properties */
      --section-padding-x: 60px;
      --section-padding-y: 60px;
      --card-padding: 40px;
      --grid-gap: 32px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html,
    body {
      width: 100%;
      font-family: 'Inter', sans-serif;
      background: var(--light);
      color: var(--text);
      overflow-x: hidden;
    }

    img {
      display: block;
      max-width: 100%;
      height: auto;
    }

    /* --- About Page Styles --- */

    /* Hero */
    .about-hero {
      height: 100vh;
      min-height: 600px;
      position: relative;
      background: url('../about/hero.webp') no-repeat center center;
      background-size: cover;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      margin-top: 0;
      overflow: hidden;
      padding: 0 60px;
    }

    .about-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(10, 31, 28, 0.85) 0%, rgba(10, 31, 28, 0.6) 100%);
      z-index: 1;
    }

    .about-hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
    }

    .about-hero h1 {
      font-size: 64px;
      font-weight: 900;
      margin-bottom: 20px;
      letter-spacing: -0.03em;
      background: linear-gradient(180deg, #fff 0%, #d5dad5 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .about-hero p {
      font-size: 20px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.92);
      font-weight: 500;
    }

    .about-hero .hero-actions {
      margin-top: 26px;
      display: flex;
      justify-content: center;
    }

    .about-hero .hero-actions .btn-cta {
      display: inline-block;
      padding: 16px 40px;
      background: var(--gradient-brand);
      color: #0A1F1C;
      border-radius: 12px;
      font-weight: 800;
      text-decoration: none;
      font-size: 18px;
      transition: transform 0.2s, filter 0.2s;
      margin: 0 10px;
    }

    .about-hero .hero-actions .btn-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 38px rgba(0, 0, 0, .26), inset 0 0 0 1px rgba(255, 255, 255, .4);
      filter: brightness(1.02);
    }

    /* Intro Section - Redesigned */
    .intro-section {
      padding: 60px 60px;
      background: #fff;
      position: relative;
    }

    .intro-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 80px;
      align-items: center;
    }

    .intro-content {
      position: relative;
      z-index: 2;
    }

    .intro-tag {
      font-size: 13px;
      font-weight: 800;
      color: var(--brand-dark);
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 16px;
      display: inline-block;
      padding: 6px 12px;
      background: rgba(107, 119, 90, 0.1);
      border-radius: 6px;
    }

    .intro-content h2 {
      font-size: 48px;
      font-weight: 900;
      color: var(--dark);
      margin-bottom: 28px;
      line-height: 1.15;
      letter-spacing: -0.02em;
    }

    .intro-content p {
      font-size: 17px;
      line-height: 1.8;
      color: #4a5c56;
      margin-bottom: 24px;
      text-align: justify;
    }

    .intro-image-wrapper {
      position: relative;
      padding: 20px;
      perspective: 1000px;
    }

    .intro-image-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #f1f5f3 0%, #e3e9e6 100%);
      border-radius: 32px;
      transform: rotate(-4deg) scale(0.95);
      z-index: 0;
      transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    }

    .intro-image-wrapper:hover .intro-image-bg {
      transform: rotate(-2deg) scale(1);
    }

    .intro-img {
      position: relative;
      z-index: 1;
      border-radius: 24px;
      box-shadow: 0 24px 48px -12px rgba(10, 31, 28, 0.15);
      width: 100%;
      display: block;
      transform: rotate(3deg);
      transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.6s ease;
      object-fit: cover;
      aspect-ratio: 0.75;
      background: #fff;
    }

    .intro-image-wrapper:hover .intro-img {
      transform: rotate(1deg) scale(1.02);
      box-shadow: 0 32px 64px -12px rgba(10, 31, 28, 0.2);
    }

    @media (max-width: 1024px) {
      .intro-container {
        gap: 50px;
      }

      .intro-content h2 {
        font-size: 40px;
      }
    }

    @media (max-width: 768px) {
      .intro-section {
        padding: 80px 20px;
      }

      .intro-container {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .intro-image-wrapper {
        max-width: 400px;
        margin: 20px auto 0;
      }

      .intro-content h2 {
        font-size: 32px;
      }
    }

    /* Timeline Section */
    .timeline-section {
      padding: 80px 60px;
      background: linear-gradient(180deg, #eef2ef 0%, #e8eeea 35%, #f6f9f7 100%);
      position: relative;
      isolation: isolate;
      overflow: hidden;
    }

    .timeline-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(900px at 20% 10%, rgba(168, 179, 138, .12), transparent),
        radial-gradient(900px at 80% 30%, rgba(107, 119, 90, .10), transparent);
      pointer-events: none;
      z-index: 0;
    }

    .timeline-title {
      text-align: center;
      margin-bottom: 70px;
      position: relative;
      z-index: 1;
    }

    .timeline-title h2 {
      font-size: 36px;
      font-weight: 900;
      color: var(--dark);
      letter-spacing: -0.01em;
    }

    .timeline {
      position: relative;
      max-width: 1100px;
      margin: 0 auto;
      z-index: 1;
    }

    /* Vertical Line */
    .timeline::after {
      content: '';
      position: absolute;
      width: 4px;
      background: linear-gradient(180deg, rgba(107, 119, 90, .18), rgba(168, 179, 138, .26));
      top: 0;
      bottom: 0;
      left: 50%;
      margin-left: -2px;
      border-radius: 999px;
      box-shadow: 0 0 0 10px rgba(107, 119, 90, .04);
    }

    .timeline-item {
      padding: 18px 46px;
      position: relative;
      background-color: inherit;
      width: 50%;
      opacity: 0;
      /* Animated later */
      transform: translateY(30px);
    }

    .timeline-item::after {
      content: '';
      position: absolute;
      width: 22px;
      height: 22px;
      right: -11px;
      background: #fff;
      border: 5px solid var(--brand-dark);
      top: 26px;
      border-radius: 50%;
      z-index: 2;
      transition: all 0.3s ease;
      box-shadow: 0 12px 24px rgba(0, 0, 0, .12), 0 0 0 8px rgba(107, 119, 90, .12);
    }

    .left {
      left: 0;
      text-align: right;
    }

    .right {
      left: 50%;
      text-align: left;
    }

    .left::after {
      right: -11px;
    }

    .right::after {
      left: -11px;
    }

    .timeline-content {
      padding: 26px 28px;
      background: linear-gradient(180deg, #ffffff 0%, #f9fbfa 100%);
      position: relative;
      border-radius: 18px;
      box-shadow: 0 24px 48px rgba(0, 0, 0, .08), inset 0 0 0 1px rgba(10, 31, 28, .06);
      transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
      border: 1px solid rgba(107, 119, 90, .14);
      backdrop-filter: blur(2px);
    }

    .timeline-content::before {
      content: "";
      position: absolute;
      left: 20px;
      right: 20px;
      top: 0;
      height: 5px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--brand-dark), var(--brand-light));
      opacity: .65;
    }

    .timeline-content:hover {
      transform: translateY(-6px);
      box-shadow: 0 28px 56px rgba(0, 0, 0, .12);
      border-color: rgba(107, 119, 90, .28);
    }

    .timeline-item:hover::after {
      background: var(--brand-dark);
      transform: scale(1.08);
    }

    .time-date {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      color: var(--brand-dark);
      margin-bottom: 10px;
      font-size: 13px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 8px 12px;
      background: rgba(107, 119, 90, 0.08);
      border-radius: 12px;
      border: 1px solid rgba(107, 119, 90, 0.12);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, .6);
    }

    .time-date::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--brand-dark);
      box-shadow: 0 0 0 6px rgba(168, 179, 138, .2);
    }

    .time-title {
      font-size: 22px;
      font-weight: 900;
      color: var(--dark);
      margin-bottom: 8px;
      letter-spacing: -0.01em;
    }

    .time-desc {
      font-size: 15px;
      color: #4f5c58;
      line-height: 1.6;
      margin: 0;
    }


    /* CTA Section */
    .cta-section {
      position: relative;
      overflow: hidden;
      margin: 80px auto 80px;
      padding: 70px 60px;
      max-width: 1100px;
      text-align: center;
      background: linear-gradient(135deg, rgba(168, 179, 138, .18), rgba(107, 119, 90, .45)), radial-gradient(900px at 20% 20%, rgba(255, 255, 255, .22), transparent);
      border-radius: 28px;
      border: 1px solid rgba(107, 119, 90, .25);
      box-shadow: 0 22px 48px rgba(0, 0, 0, .12), inset 0 0 0 1px rgba(255, 255, 255, .05);
    }

    .cta-section::before,
    .cta-section::after {
      content: "";
      position: absolute;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      filter: blur(60px);
      opacity: 0.35;
    }

    .cta-section::before {
      background: rgba(168, 179, 138, .45);
      top: -60px;
      left: -40px;
    }

    .cta-section::after {
      background: rgba(107, 119, 90, .35);
      bottom: -80px;
      right: -10px;
    }

    .cta-section h2 {
      position: relative;
      font-size: 34px;
      font-weight: 900;
      letter-spacing: -0.01em;
      color: #0a1f1c;
      margin: 0 0 14px;
    }

    .cta-section p {
      position: relative;
      font-size: 17px;
      line-height: 1.7;
      color: #30423c;
      margin: 0 auto 22px;
      max-width: 720px;
    }

    .cta-actions {
      position: relative;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
    }

    .btn-cta {
      display: inline-block;
      padding: 16px 40px;
      background: var(--gradient-brand);
      color: #0A1F1C;
      border-radius: 12px;
      font-weight: 800;
      text-decoration: none;
      font-size: 18px;
      transition: transform 0.2s, filter 0.2s;
      margin: 0 10px;
    }

    .btn-cta.primary {
      background: var(--gradient-brand);
      color: #0b1410;
    }

    .btn-cta.secondary {
      background: #fff;
      color: #0b1410;
      border: 1px solid rgba(11, 20, 16, .08);
    }

    .btn-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 30px rgba(0, 0, 0, .18);
    }

    .btn-cta:active {
      transform: translateY(0);
    }

    .btn-cta.primary::after {
      content: "→";
      font-weight: 900;
      transition: transform .18s ease;
    }

    .btn-cta.primary:hover::after {
      transform: translateX(3px);
    }

    .cta-badges {
      position: relative;
      margin: 16px auto 0;
      display: flex;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .cta-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 12px;
      background: rgba(255, 255, 255, .65);
      border: 1px solid rgba(11, 20, 16, .06);
      color: #1c2a26;
      font-weight: 800;
      font-size: 12px;
    }

    .cta-badge::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--brand-dark);
      box-shadow: 0 0 0 5px rgba(168, 179, 138, .25);
    }

    @media (max-width:768px) {
      .cta-section {
        padding: 40px 20px;
        border-radius: 20px;
      }

      .cta-section h2 {
        font-size: 26px;
      }

      .cta-section p {
        font-size: 15px;
      }

      .btn-cta {
        width: 100%;
        justify-content: center;
      }
    }

    /* References marquee */
    .refs {
      padding: 0;
      margin-top: 0px;
    }

    .ref-strip {
      position: relative;
      width: 100vw;
      left: 50%;
      right: 50%;
      margin-left: -50vw;
      margin-right: -50vw;
      overflow: hidden;
      background: linear-gradient(180deg, #eef2ef, #e8eeea);
    }

    .ref-track {
      display: flex;
      align-items: center;
      gap: 180px;
      padding: 20px 32px;
      will-change: transform;
      transform: translateX(0);
    }

    .ref-item {
      flex: 0 0 auto;
      width: 180px;
      height: 110px;
      padding: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .ref-img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
      filter: grayscale(20%);
      transition: filter .2s ease, transform .2s ease;
    }

    .ref-item:hover .ref-img {
      filter: grayscale(0%);
      transform: scale(1.03);
    }

    /* Vision/Mission Section */
    .vision-mission-section {
      padding: 60px 60px;
      background: radial-gradient(1200px at 15% 20%, rgba(168, 179, 138, .18), transparent),
        radial-gradient(1100px at 85% 0%, rgba(107, 119, 90, .22), transparent),
        #0a1f1c;
      color: #fff;
      position: relative;
      overflow: hidden;
      isolation: isolate;
    }

    .vision-mission-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
      pointer-events: none;
      z-index: 0;
    }

    .vm-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      max-width: 1150px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .vm-card {
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 18px;
      padding: 28px 28px 26px;
      box-shadow: 0 24px 48px rgba(0, 0, 0, .35), inset 0 0 0 1px rgba(255, 255, 255, .03);
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(4px);
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }

    .vm-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 22px;
      right: 22px;
      height: 4px;
      background: linear-gradient(90deg, var(--brand-dark), var(--brand-light));
      opacity: .75;
      border-radius: 999px;
    }

    .vm-card::after {
      content: "";
      position: absolute;
      inset: -60% 30% auto auto;
      width: 260px;
      height: 260px;
      background: radial-gradient(closest-side, rgba(168, 179, 138, .08), transparent);
      transform: rotate(22deg);
      z-index: 0;
    }

    .vm-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 32px 64px rgba(0, 0, 0, .4);
      border-color: rgba(255, 255, 255, 0.14);
    }

    .vm-card h3 {
      font-size: 26px;
      font-weight: 900;
      margin-bottom: 14px;
      color: #f3f6f4;
      position: relative;
      z-index: 1;
    }

    .vm-card p {
      font-size: 15px;
      line-height: 1.8;
      color: #d8e3de;
      position: relative;
      z-index: 1;
      text-align: justify;
    }

    .vm-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 999px;
      color: #e1ebe5;
      font-weight: 800;
      font-size: 12px;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 14px;
      position: relative;
      z-index: 1;
    }

    .vm-pill::before {
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--brand-light);
      box-shadow: 0 0 0 6px rgba(168, 179, 138, .2);
    }

    /* Footer */
    .site-footer {
      margin-top: 0;
      background: #0a1f1c;
      color: #e8efe9;
    }

    .site-footer .container {
      max-width: 1300px;
      margin: auto;
      padding: 60px 60px 24px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr 1fr 1fr 1fr;
      gap: 36px;
    }

    .footer-brand {
      display: flex;
      gap: 12px;
      align-items: flex-start;
    }

    .footer-brand img {
      height: 36px;
      width: auto;
      max-width: 100%;
      object-fit: contain;
      flex-shrink: 0;
    }

    .footer-brand .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1;
      margin-top: 0;
      align-self: flex-start;
    }

    .footer-brand .wordmark {
      letter-spacing: 0.4em;
      font-weight: 800;
      font-size: 20px;
      color: #e8efe9;
    }

    .footer-brand .tagline {
      font-size: 9px;
      font-weight: 600;
      color: #d5dad5;
      opacity: .9;
      letter-spacing: .06em;
      margin-top: 2px;
    }

    .footer-brand {
      display: flex;
      gap: 20px;
    }

    .footer-brand .catchline {
      line-height: 1.5em;
      margin: 14px 0 10px;
      padding: 6px 0;
      font-weight: 800;
      font-size: 14px;
      letter-spacing: .02em;
      background: var(--gradient-brand);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .footer-brand .social {
      display: flex;
      gap: 10px;
      margin-top: 4px;
    }

    .footer-brand .social a {
      width: 32px;
      height: 32px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--gradient-brand);
      color: #0b1410;
      border-radius: 999px;
      box-shadow: var(--shadow-sm);
      transition: transform .2s ease, filter .2s ease;
    }

    .footer-brand .social a:hover {
      transform: translateY(-2px);
      filter: brightness(1.06);
    }

    .footer-brand .social svg {
      width: 18px;
      height: 18px;
      display: block;
    }

    .footer-col h4 {
      font-size: 14px;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: #cfe1d6;
      margin-bottom: 12px;
    }

    .footer-col a {
      display: block;
      color: #e8efe9;
      text-decoration: none;
      opacity: .9;
      padding: 6px 0;
      font-size: 14px;
    }

    .footer-col a:hover {
      opacity: 1;
      color: #fff;
    }

    .footer-contact p {
      font-size: 14px;
      opacity: .9;
      padding: 6px 0;
    }

    .newsletter {
      display: flex;
      gap: 8px;
      margin-top: 8px;
    }

    .newsletter input {
      flex: 1;
      padding: 10px 12px;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, .18);
      background: rgba(255, 255, 255, .06);
      color: #fff;
    }

    .newsletter button {
      padding: 10px 14px;
      border-radius: 10px;
      border: 0;
      background: var(--gradient-brand);
      color: #0b1410;
      font-weight: 800;
    }

    .map-embed {
      margin-top: 8px;
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: 12px;
      overflow: hidden;
    }

    .map-embed iframe {
      width: 100%;
      height: 240px;
      border: 0;
      display: block;
    }

    .contact-list {
      list-style: none;
      margin: 8px 0 0;
      padding: 0;
      display: grid;
      gap: 12px;
    }

    .contact-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }

    .contact-list .icon {
      color: #cfe1d6;
      line-height: 1;
      margin-top: 2px;
    }

    .contact-list a {
      color: #e8efe9;
      text-decoration: underline;
    }

    .contact-list a:hover {
      color: #fff;
    }

    .contact-list address {
      font-style: normal;
      color: #e8efe9;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 1px solid rgba(255, 255, 255, .08);
      margin-top: 28px;
      padding-top: 18px;
      font-size: 13px;
      opacity: .9;
    }

    .footer-bottom a {
      color: #e8efe9;
      text-decoration: none;
      margin-left: 16px;
    }

    /* Footer products bullets */
    .footer-col:nth-of-type(3) a {
      position: relative;
      padding-left: 18px;
    }

    .footer-col:nth-of-type(3) a::before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      width: 8px;
      height: 8px;
      transform: translateY(-50%);
      background: var(--gradient-brand);
      border-radius: 2px;
      box-shadow: 0 0 0 1px rgba(255, 255, 255, .25) inset;
    }

    /* Footer about bullets */
    .footer-col:nth-of-type(2) a {
      position: relative;
      padding-left: 18px;
    }

    .footer-col:nth-of-type(2) a::before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      width: 8px;
      height: 8px;
      transform: translateY(-50%);
      background: var(--gradient-brand);
      border-radius: 2px;
      box-shadow: 0 0 0 1px rgba(255, 255, 255, .25) inset;
    }

    /* Footer about underline */
    .footer-col:nth-of-type(2) h4::after {
      content: "";
      display: block;
      width: 44px;
      height: 2px;
      margin-top: 8px;
      background: var(--gradient-brand);
      border-radius: 2px;
    }

    /* Footer products & contact underline */
    .footer-col:nth-of-type(3) h4::after {
      content: "";
      display: block;
      width: 44px;
      height: 2px;
      margin-top: 8px;
      background: var(--gradient-brand);
      border-radius: 2px;
    }

    .footer-col:nth-of-type(4) h4::after {
      content: "";
      display: block;
      width: 44px;
      height: 2px;
      margin-top: 8px;
      background: var(--gradient-brand);
      border-radius: 2px;
    }

    /* Responsive */
    @media screen and (max-width: 768px) {
      header {
        padding: 14px 18px;
      }

      header.shrink {
        padding: 10px 16px;
      }

      .main-nav {
        display: none;
      }

      #menuToggle {
        display: inline-flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
      }

      .header-right {
        margin-left: auto;
      }

      .about-hero {
        padding: 140px 20px 60px;
      }

      .about-hero h1 {
        font-size: 36px;
      }

      .intro-section,
      .timeline-section,
      .team-section,
      .vision-mission-section {
        padding: 60px 20px;
      }

      /* Timeline Mobile */
      .timeline::after {
        left: 31px;
      }

      .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
      }

      .timeline-item::after {
        left: 21px;
      }

      .left::after,
      .right::after {
        left: 21px;
      }

      .right {
        left: 0%;
      }

      .left {
        text-align: left;
      }

      .team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .vm-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }

    /* §2.1 — 480px Breakpoint */
    @media (max-width: 480px) {
      .about-hero h1 {
        font-size: 28px;
      }

      .about-hero p {
        font-size: 16px;
      }

      .intro-section,
      .timeline-section,
      .team-section,
      .vision-mission-section {
        padding: 40px 16px;
      }
    }

    /* §2.1 — 360px Breakpoint */
    @media (max-width: 360px) {
      .about-hero h1 {
        font-size: 24px;
      }

      .about-hero p {
        font-size: 15px;
      }

      .intro-section,
      .timeline-section,
      .team-section,
      .vision-mission-section {
        padding: 40px 12px;
      }
    }

    /* §11.1 — Azaltılmış Hareket Tercihi */
    @media (prefers-reduced-motion: reduce) {

      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
    }

    /* §11.4 — Focus Visible Stilleri */
    a:focus-visible,
    button:focus-visible {
      outline: 2px solid rgba(168, 179, 138, 0.8);
      outline-offset: 2px;
    }

    /* §11.2 — Hover sadece fare/trackpad cihazlarda */
    @media (hover: hover) and (pointer: fine) {
      .team-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
      }

      .vm-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
      }
    }
  
