      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      body {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          sans-serif;
        line-height: 1.6;
        color: #333;
        background: linear-gradient(135deg, #e5f2e4 0%, #c5e1c3 100%);
        min-height: 100vh;
      }
      header {
        background: linear-gradient(135deg, #a1ca9e 0%, #c5e1c3 100%);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        min-height: 85px;
        position: relative;
        overflow: hidden;
      }
      header::before {
        content: "";
        position: absolute;
        top: -50%;
        right: -10%;
        width: 200px;
        height: 200px;
        background: radial-gradient(
          circle,
          rgba(255, 255, 255, 0.1) 0%,
          transparent 70%
        );
        border-radius: 50%;
        animation: float 6s ease-in-out infinite;
      }
      @keyframes float {
        0%,
        100% {
          transform: translateY(0px);
        }
        50% {
          transform: translateY(-20px);
        }
      }
      .header-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        height: 85px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        z-index: 10;
      }
      .logo-container {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        z-index: 20;
        position: relative;
      }
      .logo {
        height: 45px;
        width: auto;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
        transition: transform 0.3s ease;
      }
      .logo:hover {
        transform: scale(1.05);
      }
      .nav-container {
        flex: 1;
        display: flex;
        justify-content: flex-end;
        z-index: 15;
      }
      .main-nav {
        display: flex;
        list-style: none;
        gap: clamp(1rem, 2vw, 2rem);
        margin: 0;
        padding: 0;
      }
      .main-nav li {
        position: relative;
      }
      .main-nav a {
        color: #2d5a2b;
        text-decoration: none;
        font-weight: 500;
        font-size: clamp(0.9rem, 1.5vw, 1rem);
        padding: 8px 16px;
        border-radius: 25px;
        transition: all 0.3s ease;
        position: relative;
        white-space: nowrap;
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
        display: block;
      }
      .main-nav a::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 25px;
        opacity: 0;
        transition: opacity 0.3s ease;
      }
      .main-nav a:hover::before {
        opacity: 1;
      }
      .main-nav a:hover {
        color: #1a3d19;
        transform: translateY(-2px);
      }
      @media (max-width: 768px) {
        .header-container {
          flex-direction: column;
          height: auto;
          padding: 15px 20px;
        }
        .logo-container {
          margin-bottom: 10px;
        }
        .nav-container {
          width: 100%;
          justify-content: center;
        }
        .main-nav {
          flex-wrap: wrap;
          justify-content: center;
          gap: 0.5rem;
        }
        .main-nav a {
          font-size: 0.85rem;
          padding: 6px 12px;
        }
      }
      footer {
        background: linear-gradient(135deg, #2d5a2b 0%, #3d6b3a 100%);
        color: #e5f2e4;
        padding: 50px 0 30px;
        position: relative;
        overflow: hidden;
      }
      footer::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #a1ca9e, #c5e1c3, #a1ca9e);
      }
      .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        position: relative;
        z-index: 5;
      }
      .footer-section h3 {
        color: #a1ca9e;
        margin-bottom: 20px;
        font-size: 1.2rem;
        font-weight: 600;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
      }
      .footer-section p,
      .footer-section a {
        color: #e5f2e4;
        text-decoration: none;
        line-height: 1.8;
        margin-bottom: 8px;
        transition: color 0.3s ease;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
      }
      .footer-section a:hover {
        color: #c5e1c3;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
      }
      .footer-links {
        display: flex;
        flex-direction: column;
        gap: 8px;
      }
      .footer-bottom {
        margin-top: 40px;
        padding-top: 20px;
        border-top: 1px solid rgba(161, 202, 158, 0.3);
        text-align: center;
        color: #c5e1c3;
        font-size: 0.9rem;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
      }
      .cookie-consent {
        position: fixed;
        bottom: 20px;
        left: 20px;
        right: 20px;
        background: rgba(45, 90, 43, 0.95);
        color: #e5f2e4;
        padding: 20px;
        border-radius: 10px;
        display: none;
        z-index: 1000;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
      }
      .cookie-consent.show {
        display: block;
      }
      .cookie-consent p {
        margin-bottom: 15px;
        font-size: 0.9rem;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
      }
      .cookie-consent button {
        background: #a1ca9e;
        color: #2d5a2b;
        border: none;
        padding: 8px 16px;
        border-radius: 5px;
        cursor: pointer;
        font-weight: 500;
        margin-right: 10px;
        transition: background 0.3s ease;
      }
      .cookie-consent button:hover {
        background: #c5e1c3;
      }
      @media (max-width: 600px) {
        .footer-container {
          grid-template-columns: 1fr;
          gap: 30px;
        }
        .cookie-consent {
          left: 10px;
          right: 10px;
          bottom: 10px;
        }
      }
      .about-page-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        font-family: "Arial", sans-serif;
      }
      .achievement-hero {
        background: linear-gradient(135deg, #a1ca9e 0%, #c5e1c3 100%);
        padding: 80px 0;
        text-align: center;
        margin-bottom: 60px;
        border-radius: 15px;
        position: relative;
        overflow: hidden;
      }
      .achievement-hero::before {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(
          circle,
          rgba(255, 255, 255, 0.1) 0%,
          transparent 70%
        );
        animation: pulse 6s ease-in-out infinite;
      }
      @keyframes pulse {
        0%,
        100% {
          transform: scale(1);
          opacity: 0.3;
        }
        50% {
          transform: scale(1.1);
          opacity: 0.1;
        }
      }
      .hero-content-wrapper {
        position: relative;
        z-index: 2;
      }
      .hero-main-title {
        font-size: 3.2rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 20px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      }
      .hero-subtitle {
        font-size: 1.3rem;
        color: #34495e;
        margin-bottom: 30px;
        font-weight: 300;
        line-height: 1.6;
      }
      .achievement-stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
        margin-top: 40px;
      }
      .stat-item {
        background: rgba(255, 255, 255, 0.9);
        padding: 25px;
        border-radius: 10px;
        text-align: center;
        backdrop-filter: blur(10px);
        transition: transform 0.3s ease;
      }
      .stat-item:hover {
        transform: translateY(-5px);
      }
      .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: #a1ca9e;
        display: block;
        margin-bottom: 8px;
      }
      .stat-label {
        font-size: 0.9rem;
        color: #34495e;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
      }
      .recognition-showcase {
        background: #f8f9fa;
        padding: 80px 0;
        margin-bottom: 60px;
        position: relative;
      }
      .recognition-showcase::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(
          90deg,
          #a1ca9e,
          #c5e1c3,
          #e5f2e4,
          #c5e1c3,
          #a1ca9e
        );
      }
      .recognition-content {
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 20px;
      }
      .section-title-recognition {
        font-size: 2.8rem;
        text-align: center;
        color: #2c3e50;
        margin-bottom: 50px;
        font-weight: 600;
      }
      .awards-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
        margin-bottom: 60px;
      }
      .award-card {
        background: white;
        padding: 35px;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: all 0.3s ease;
        border: 2px solid transparent;
        position: relative;
        overflow: hidden;
      }
      .award-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(161, 202, 158, 0.1),
          transparent
        );
        transition: left 0.5s ease;
      }
      .award-card:hover::before {
        left: 100%;
      }
      .award-card:hover {
        transform: translateY(-8px);
        border-color: #a1ca9e;
        box-shadow: 0 15px 35px rgba(161, 202, 158, 0.3);
      }
      .award-icon {
        width: 60px;
        height: 60px;
        background: #a1ca9e;
        border-radius: 50%;
        margin: 0 auto 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: white;
        font-weight: bold;
      }
      .award-title {
        font-size: 1.4rem;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 15px;
      }
      .award-description {
        color: #5a6c7d;
        line-height: 1.6;
        font-size: 0.95rem;
      }
      .award-year {
        display: inline-block;
        background: #e5f2e4;
        color: #2c3e50;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 500;
        margin-top: 15px;
      }
      .client-results-section {
        background: url("./image_pool/pic-7.jpg") center/cover;
        padding: 100px 0;
        position: relative;
        margin-bottom: 60px;
      }
      .client-results-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(
          135deg,
          rgba(161, 202, 158, 0.9),
          rgba(197, 225, 195, 0.8)
        );
        z-index: 1;
      }
      .client-results-content {
        position: relative;
        z-index: 2;
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 20px;
      }
      .results-title {
        font-size: 2.6rem;
        color: white;
        text-align: center;
        margin-bottom: 50px;
        font-weight: 600;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
      }
      .results-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-bottom: 50px;
      }
      .result-metric {
        background: rgba(255, 255, 255, 0.95);
        padding: 30px;
        border-radius: 12px;
        text-align: center;
        backdrop-filter: blur(15px);
        transition: transform 0.3s ease;
      }
      .result-metric:hover {
        transform: scale(1.05);
      }
      .metric-value {
        font-size: 2.2rem;
        font-weight: 700;
        color: #a1ca9e;
        margin-bottom: 10px;
        display: block;
      }
      .metric-description {
        color: #2c3e50;
        font-size: 0.9rem;
        font-weight: 500;
        line-height: 1.4;
      }
      .testimonial-spotlight {
        background: rgba(255, 255, 255, 0.95);
        padding: 40px;
        border-radius: 15px;
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
        backdrop-filter: blur(15px);
      }
      .testimonial-photo {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        margin: 0 auto 20px;
        background: url("./image_pool/pic-8.jpg") center/cover;
        border: 4px solid white;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      }
      .testimonial-quote {
        font-size: 1.1rem;
        color: #2c3e50;
        font-style: italic;
        line-height: 1.7;
        margin-bottom: 20px;
      }
      .testimonial-author {
        font-weight: 600;
        color: #a1ca9e;
        font-size: 1rem;
      }
      .testimonial-role {
        color: #5a6c7d;
        font-size: 0.85rem;
        margin-top: 5px;
      }
      .leadership-excellence {
        padding: 80px 0;
        background: linear-gradient(45deg, #f8f9fa 0%, #e5f2e4 100%);
      }
      .leadership-content {
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 20px;
      }
      .leadership-header {
        text-align: center;
        margin-bottom: 60px;
      }
      .leadership-title {
        font-size: 2.8rem;
        color: #2c3e50;
        margin-bottom: 20px;
        font-weight: 600;
      }
      .leadership-subtitle {
        font-size: 1.2rem;
        color: #5a6c7d;
        line-height: 1.6;
        max-width: 600px;
        margin: 0 auto;
      }
      .excellence-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 40px;
      }
      .excellence-card {
        background: white;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        border-left: 4px solid #a1ca9e;
      }
      .excellence-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(161, 202, 158, 0.2);
      }
      .excellence-icon {
        width: 50px;
        height: 50px;
        background: #a1ca9e;
        border-radius: 8px;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        color: white;
        font-weight: bold;
      }
      .excellence-heading {
        font-size: 1.3rem;
        color: #2c3e50;
        margin-bottom: 15px;
        font-weight: 600;
      }
      .excellence-text {
        color: #5a6c7d;
        line-height: 1.7;
        font-size: 0.95rem;
      }
      .achievement-cta {
        text-align: center;
        margin-top: 50px;
      }
      .cta-button-achievement {
        background: linear-gradient(135deg, #a1ca9e, #c5e1c3);
        color: white;
        padding: 15px 35px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        display: inline-block;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(161, 202, 158, 0.3);
        position: relative;
        z-index: 10;
        cursor: pointer;
      }
      .cta-button-achievement:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(161, 202, 158, 0.4);
        text-decoration: none;
        color: white;
      }
      @media (max-width: 768px) {
        .about-page-container {
          padding: 0 15px;
        }
        .achievement-hero {
          padding: 60px 0;
          margin-bottom: 40px;
        }
        .hero-main-title {
          font-size: 2.2rem;
        }
        .hero-subtitle {
          font-size: 1.1rem;
        }
        .achievement-stats-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 20px;
        }
        .stat-item {
          padding: 20px;
        }
        .stat-number {
          font-size: 2rem;
        }
        .recognition-showcase {
          padding: 60px 0;
          margin-bottom: 40px;
        }
        .section-title-recognition {
          font-size: 2.2rem;
        }
        .awards-grid {
          grid-template-columns: 1fr;
          gap: 30px;
        }
        .award-card {
          padding: 25px;
        }
        .client-results-section {
          padding: 80px 0;
          margin-bottom: 40px;
        }
        .results-title {
          font-size: 2.2rem;
        }
        .results-grid {
          grid-template-columns: 1fr;
          gap: 25px;
        }
        .result-metric {
          padding: 25px;
        }
        .testimonial-spotlight {
          padding: 30px;
        }
        .leadership-excellence {
          padding: 60px 0;
        }
        .leadership-title {
          font-size: 2.2rem;
        }
        .excellence-grid {
          grid-template-columns: 1fr;
          gap: 30px;
        }
        .excellence-card {
          padding: 30px;
        }
      }
      @media (max-width: 480px) {
        .achievement-stats-grid {
          grid-template-columns: 1fr;
        }
        .hero-main-title {
          font-size: 1.8rem;
        }
        .section-title-recognition {
          font-size: 1.8rem;
        }
        .results-title {
          font-size: 1.8rem;
        }
        .leadership-title {
          font-size: 1.8rem;
        }
      }