
    :root {
      --green-dark:   #1a4731;
      --green-mid:    #2d6a4f;
      --green-light:  #40916c;
      --green-accent: #52b788;
      --green-pale:   #d8f3dc;
      --gold:         #c9a84c;
      --white:        #ffffff;
      --gray-50:      #f9fafb;
      --gray-100:     #f3f4f6;
      --gray-200:     #e5e7eb;
      --gray-500:     #6b7280;
      --gray-700:     #374151;
      --gray-900:     #111827;
      --font-body:    'Inter', sans-serif;
      --font-display: 'Playfair Display', serif;
      --radius:       12px;
      --shadow-sm:    0 1px 3px rgba(0,0,0,.08);
      --shadow-md:    0 4px 16px rgba(0,0,0,.10);
      --shadow-lg:    0 10px 40px rgba(0,0,0,.14);
      --transition:   all .25s ease;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: var(--font-body); color: var(--gray-900); background: var(--white); line-height: 1.6; }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    .container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
    .section { padding: 88px 0; }
    .section-alt { background: var(--gray-50); }
    .section-dark { background: var(--green-dark); color: var(--white); }

    .tag {
      display: inline-block;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--green-light);
      margin-bottom: 12px;
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(28px, 4vw, 40px);
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 16px;
      color: var(--green-dark);
    }
    .section-dark .section-title { color: var(--white); }
    .section-dark .tag { color: var(--green-accent); }
    .text-center { text-align: center; }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: 8px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
      border: 2px solid transparent;
    }
    .btn-primary {
      background: var(--green-mid);
      color: var(--white);
      border-color: var(--green-mid);
    }
    .btn-primary:hover {
      background: var(--green-dark);
      border-color: var(--green-dark);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }
    .btn-gold {
      background: var(--gold);
      color: var(--white);
      border-color: var(--gold);
    }
    .btn-gold:hover {
      background: #b8963e;
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    /* ─── Top Bar ─── */
    .topbar {
      background: var(--green-dark);
      color: rgba(255,255,255,.8);
      font-size: 13px;
      padding: 8px 0;
    }
    .topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
    .topbar a { color: rgba(255,255,255,.8); transition: var(--transition); }
    .topbar a:hover { color: var(--white); }
    .topbar-left, .topbar-right { display: flex; gap: 20px; align-items: center; }

    /* ─── Navbar ─── */
    .navbar {
      background: var(--white);
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 12px rgba(0,0,0,.08);
    }
    .navbar .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
    .logo { display: flex; align-items: center; gap: 10px; }
    .logo img { height: 52px; width: auto; }
    .logo-text { display: flex; flex-direction: column; }
    .logo-name { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--green-dark); line-height: 1.1; }
    .logo-tagline { font-size: 12px; font-weight: 500; color: var(--green-light); letter-spacing: .04em; }
    .nav-links { display: flex; align-items: center; gap: 4px; }
    .nav-links a { font-size: 14px; font-weight: 500; color: var(--gray-700); padding: 8px 14px; border-radius: 6px; transition: var(--transition); }
    .nav-links a:hover, .nav-links a.active { color: var(--green-mid); background: var(--green-pale); }
    .nav-links .btn-primary { padding: 9px 20px; font-size: 14px; margin-left: 8px; }
    .nav-dropdown { position: relative; }
    .nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
    .nav-dropdown > a::after { content: '▾'; font-size: 12px; color: var(--gray-500); }
    .dropdown-menu { display: none; position: absolute; top: calc(100% + 8px); left: 0; background: var(--white); border: 1px solid var(--gray-200); border-radius: 10px; box-shadow: var(--shadow-lg); min-width: 180px; padding: 8px; z-index: 200; }
    .nav-dropdown:hover .dropdown-menu { display: block; }
    .dropdown-menu a { display: block; padding: 9px 14px; font-size: 14px; color: var(--gray-700); border-radius: 6px; transition: var(--transition); }
    .dropdown-menu a:hover { background: var(--green-pale); color: var(--green-mid); }

    /* ─── Page Hero ─── */
    .page-hero {
      background: linear-gradient(135deg, var(--green-dark) 0%, #0d2b1e 100%);
      padding: 80px 0 72px;
      position: relative;
      overflow: hidden;
    }
    .page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .page-hero .container { position: relative; z-index: 1; }
    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: rgba(255,255,255,.5);
      margin-bottom: 24px;
    }
    .breadcrumb a { color: rgba(255,255,255,.6); transition: var(--transition); }
    .breadcrumb a:hover { color: var(--white); }
    .breadcrumb-sep { font-size: 11px; }
    .page-hero h1 {
      font-family: var(--font-display);
      font-size: clamp(36px, 5vw, 56px);
      font-weight: 700;
      color: var(--white);
      margin-bottom: 16px;
      line-height: 1.1;
    }
    .page-hero h1 span { color: var(--green-accent); }
    .page-hero p {
      font-size: 18px;
      color: rgba(255,255,255,.75);
      max-width: 620px;
      line-height: 1.7;
    }

    /* ─── Company Overview ─── */
    .overview-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }
    .overview-text p {
      font-size: 16px;
      color: var(--gray-700);
      line-height: 1.85;
      margin-bottom: 20px;
    }
    .overview-text p:last-child { margin-bottom: 0; }
    .overview-sidebar { display: flex; flex-direction: column; gap: 20px; }
    .sidebar-card {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-left: 4px solid var(--green-mid);
      border-radius: var(--radius);
      padding: 24px 24px 24px 20px;
      transition: var(--transition);
    }
    .sidebar-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
    .sidebar-card-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--green-light);
      margin-bottom: 10px;
    }
    .sidebar-card p {
      font-size: 15px;
      color: var(--gray-700);
      line-height: 1.7;
    }

    /* ─── Mission & Vision ─── */
    .mv-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }
    .mv-card {
      border-radius: var(--radius);
      padding: 48px 40px;
      position: relative;
      overflow: hidden;
    }
    .mv-card-mission {
      background: linear-gradient(135deg, var(--green-dark) 0%, #1e5c3a 100%);
      color: var(--white);
    }
    .mv-card-vision {
      background: linear-gradient(135deg, #0d2b1e 0%, var(--green-dark) 100%);
      color: var(--white);
    }
    .mv-card::before {
      content: '';
      position: absolute;
      top: -40px;
      right: -40px;
      width: 160px;
      height: 160px;
      border-radius: 50%;
      background: rgba(255,255,255,.04);
    }
    .mv-icon {
      font-size: 44px;
      margin-bottom: 20px;
    }
    .mv-label {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--green-accent);
      margin-bottom: 12px;
    }
    .mv-card h3 {
      font-family: var(--font-display);
      font-size: 26px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 16px;
    }
    .mv-card p {
      font-size: 16px;
      color: rgba(255,255,255,.8);
      line-height: 1.75;
    }

    /* ─── Core Values ─── */
    .values-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
    }
    .value-card {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius);
      padding: 32px 20px;
      text-align: center;
      transition: var(--transition);
    }
    .value-card:hover {
      border-color: var(--green-accent);
      box-shadow: var(--shadow-md);
      transform: translateY(-6px);
    }
    .value-icon { font-size: 40px; margin-bottom: 16px; }
    .value-card h3 {
      font-size: 16px;
      font-weight: 700;
      color: var(--green-dark);
      margin-bottom: 10px;
    }
    .value-card p { font-size: 13px; color: var(--gray-500); line-height: 1.65; }

    /* ─── Stats ─── */
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }
    .stat-item {
      text-align: center;
      padding: 48px 24px;
      border-right: 1px solid rgba(255,255,255,.12);
    }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      font-family: var(--font-display);
      font-size: 56px;
      font-weight: 700;
      color: var(--green-accent);
      line-height: 1;
      margin-bottom: 10px;
    }
    .stat-label { font-size: 15px; color: rgba(255,255,255,.75); font-weight: 500; }
    .stat-sub { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 4px; }

    /* ─── CTA Banner ─── */
    .cta-banner {
      padding: 88px 0;
      background: linear-gradient(135deg, var(--green-dark) 0%, #0d2b1e 100%);
      position: relative;
      overflow: hidden;
    }
    .cta-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .cta-banner .container { position: relative; z-index: 1; text-align: center; }
    .cta-banner h2 {
      font-family: var(--font-display);
      font-size: clamp(26px, 4vw, 40px);
      font-weight: 700;
      color: var(--white);
      margin-bottom: 16px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }
    .cta-banner p { font-size: 17px; color: rgba(255,255,255,.7); margin-bottom: 36px; }

    /* ─── Footer ─── */
    footer { background: #0d1f16; color: rgba(255,255,255,.75); padding: 64px 0 32px; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; }
    .footer-brand p { font-size: 14px; color: rgba(255,255,255,.55); margin-top: 16px; line-height: 1.7; }
    .footer-col h4 { font-size: 14px; font-weight: 700; color: var(--white); letter-spacing: .04em; text-transform: uppercase; margin-bottom: 20px; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.6); transition: var(--transition); }
    .footer-col ul li a:hover { color: var(--green-accent); }
    .footer-contact-item { display: flex; gap: 10px; margin-bottom: 14px; font-size: 14px; color: rgba(255,255,255,.6); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,.4); }

    /* ─── Responsive ─── */
    @media (max-width: 1024px) {
      .overview-grid { grid-template-columns: 1fr; gap: 48px; }
      .mv-grid { grid-template-columns: 1fr; }
      .values-grid { grid-template-columns: repeat(3, 1fr); }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    }
    @media (max-width: 768px) {
      .section { padding: 60px 0; }
      .topbar { display: none; }
      .nav-links { display: none; }
      .values-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    }
  