        :root {
        --primary-color: #7ab27a;
        --secondary-color: #a8cecb;
        --tertiary-color: #e7dfe8;
        --gradient-primary: linear-gradient(135deg, #7ab27a, #a8cecb);
        --gradient-subtle: radial-gradient(ellipse at top, rgba(122, 178, 122, 0.1), rgba(168, 206, 203, 0.05));
        --text-dark: #2c3e50;
        --text-light: #6c757d;
        --white: #ffffff;
        --shadow-elegant: 0 8px 32px rgba(122, 178, 122, 0.15);
        --shadow-soft: 0 4px 16px rgba(168, 206, 203, 0.12);
        }
        * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        }
        body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        line-height: 1.6;
        color: var(--text-dark);
        background: var(--gradient-subtle);
        overflow-x: hidden;
        }
        header {
        background: linear-gradient(135deg, var(--white) 0%, rgba(231, 223, 232, 0.3) 50%, rgba(168, 206, 203, 0.1) 100%);
        backdrop-filter: blur(8px);
        border-bottom: 1px solid rgba(122, 178, 122, 0.1);
        position: relative;
        z-index: 100;
        }
        .header-container {
        display: grid;
        grid-template-columns: auto 1fr auto;
        grid-template-areas: "logo . navigation";
        align-items: center;
        max-width: 1400px;
        margin: 0 auto;
        padding: 1.5rem 2rem;
        gap: 2rem;
        min-height: 100px;
        }
        .logo-section {
        grid-area: logo;
        display: flex;
        align-items: center;
        gap: 1rem;
        position: relative;
        z-index: 110;
        }
        .logo-section img {
        height: 50px;
        width: auto;
        filter: drop-shadow(0 2px 8px rgba(122, 178, 122, 0.2));
        }
        .brand-name {
        font-family: 'Playfair Display', serif;
        font-size: clamp(1.5rem, 3vw, 2rem);
        font-weight: 600;
        color: var(--primary-color);
        letter-spacing: -0.02em;
        text-shadow: 0 2px 4px rgba(122, 178, 122, 0.1);
        }
        .main-nav {
        grid-area: navigation;
        position: relative;
        z-index: 105;
        }
        .nav-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.5rem;
        list-style: none;
        align-items: center;
        justify-items: end;
        }
        .nav-item a {
        display: block;
        padding: 0.75rem 1.25rem;
        text-decoration: none;
        color: var(--text-dark);
        font-weight: 500;
        font-size: 0.95rem;
        letter-spacing: 0.025em;
        border-radius: 12px;
        background: rgba(231, 223, 232, 0.4);
        backdrop-filter: blur(4px);
        border: 1px solid rgba(122, 178, 122, 0.15);
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        text-align: center;
        position: relative;
        overflow: hidden;
        }
        .nav-item a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: var(--gradient-primary);
        transition: left 0.2s ease;
        z-index: -1;
        }
        .nav-item a:hover {
        color: var(--white);
        border-color: var(--primary-color);
        box-shadow: var(--shadow-soft);
        }
        .nav-item a:hover::before {
        left: 0;
        }
        footer {
        background: linear-gradient(135deg, var(--text-dark) 0%, rgba(44, 62, 80, 0.95) 100%);
        color: var(--white);
        margin-top: 4rem;
        position: relative;
        overflow: hidden;
        }
        footer::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -20%;
        width: 140%;
        height: 200%;
        background: var(--gradient-primary);
        opacity: 0.05;
        transform: rotate(-12deg);
        z-index: 1;
        }
        .footer-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 4rem 2rem 2rem;
        position: relative;
        z-index: 2;
        }
        .footer-grid {
        display: subgrid;
        grid-template-columns: subgrid;
        grid-template-rows: auto auto auto;
        gap: 3rem 2rem;
        }
        .footer-main {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 3rem;
        margin-bottom: 3rem;
        }
        .footer-section {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        }
        .footer-section h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.3rem;
        font-weight: 600;
        color: var(--secondary-color);
        margin-bottom: 0.5rem;
        letter-spacing: -0.01em;
        }
        .contact-info {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        }
        .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(168, 206, 203, 0.1);
        }
        .contact-item:last-child {
        border-bottom: none;
        }
        .contact-label {
        font-weight: 500;
        color: var(--secondary-color);
        min-width: 80px;
        font-size: 0.9rem;
        }
        .contact-value {
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.95rem;
        line-height: 1.4;
        }
        .contact-value a {
        color: inherit;
        text-decoration: none;
        transition: color 0.2s ease;
        }
        .contact-value a:hover {
        color: var(--secondary-color);
        }
        .footer-links {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        }
        .footer-links a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        padding: 0.5rem 0;
        font-size: 0.95rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.2s ease;
        }
        .footer-links a:hover {
        color: var(--secondary-color);
        padding-left: 0.5rem;
        }
        .footer-bottom {
        border-top: 1px solid rgba(168, 206, 203, 0.15);
        padding-top: 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
        }
        .copyright {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
        }
        .footer-brand {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        }
        .footer-brand .brand-name {
        font-size: 1.25rem;
        color: var(--secondary-color);
        }
        .cookie-consent {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        max-width: 380px;
        background: var(--white);
        padding: 1.5rem;
        border-radius: 16px;
        box-shadow: var(--shadow-elegant);
        border: 1px solid rgba(122, 178, 122, 0.2);
        z-index: 1000;
        transform: translateY(100px);
        opacity: 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .cookie-consent.show {
        transform: translateY(0);
        opacity: 1;
        }
        .cookie-content p {
        font-size: 0.9rem;
        color: var(--text-dark);
        margin-bottom: 1rem;
        line-height: 1.5;
        }
        .cookie-buttons {
        display: flex;
        gap: 0.75rem;
        flex-wrap: wrap;
        }
        .cookie-btn {
        padding: 0.5rem 1rem;
        border: none;
        border-radius: 8px;
        font-size: 0.85rem;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.2s ease;
        flex: 1;
        min-width: 80px;
        }
        .cookie-accept {
        background: var(--gradient-primary);
        color: var(--white);
        }
        .cookie-accept:hover {
        box-shadow: var(--shadow-soft);
        }
        .cookie-decline {
        background: transparent;
        color: var(--text-light);
        border: 1px solid rgba(122, 178, 122, 0.3);
        }
        .cookie-decline:hover {
        background: rgba(122, 178, 122, 0.05);
        }
        @media (max-width: 1200px) {
        .header-container {
        grid-template-columns: 1fr;
        grid-template-areas: 
        "logo"
        "navigation";
        text-align: center;
        gap: 1.5rem;
        }
        .nav-list {
        justify-items: center;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        }
        }
        @media (max-width: 768px) {
        .header-container {
        padding: 1rem 1.5rem;
        }
        .nav-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        }
        .nav-item a {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
        }
        .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        }
        .footer-container {
        padding: 3rem 1.5rem 2rem;
        }
        .footer-bottom {
        flex-direction: column;
        text-align: center;
        }
        .cookie-consent {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
        }
        .cookie-buttons {
        justify-content: center;
        }
        }
        @media (max-width: 480px) {
        .nav-list {
        grid-template-columns: 1fr;
        }
        .brand-name {
        font-size: 1.5rem;
        }
        }
        .about-hero-section {
        background: linear-gradient(135deg, #7ab27a 0%, #a8cecb 100%);
        padding: 80px 20px;
        text-align: center;
        position: relative;
        overflow: hidden;
        }
        .about-hero-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(231,223,232,0.1) 0%, transparent 70%);
        animation: float 8s ease-in-out infinite;
        }
        @keyframes float {
        0%, 100% { transform: translate(0, 0) rotate(0deg); }
        33% { transform: translate(-30px, -30px) rotate(120deg); }
        66% { transform: translate(30px, -20px) rotate(240deg); }
        }
        .about-hero-content {
        max-width: 800px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
        }
        .about-main-title {
        font-size: 3.2rem;
        font-weight: 800;
        color: white;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        letter-spacing: -0.5px;
        }
        .about-subtitle {
        font-size: 1.3rem;
        color: rgba(255,255,255,0.9);
        margin-bottom: 0;
        font-weight: 300;
        line-height: 1.6;
        }
        .leadership-showcase {
        padding: 100px 20px;
        background: #f8f9fa;
        position: relative;
        }
        .leadership-container {
        max-width: 1200px;
        margin: 0 auto;
        }
        .section-header {
        text-align: center;
        margin-bottom: 60px;
        }
        .section-title {
        font-size: 2.8rem;
        color: #2c3e50;
        font-weight: 700;
        margin-bottom: 20px;
        position: relative;
        }
        .section-title::after {
        content: '';
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #7ab27a, #a8cecb);
        display: block;
        margin: 20px auto 0;
        border-radius: 2px;
        }
        .section-description {
        font-size: 1.2rem;
        color: #5a6c7d;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.7;
        }
        .leadership-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 40px;
        margin-top: 50px;
        }
        .leader-card {
        background: white;
        border-radius: 20px;
        padding: 40px 30px;
        text-align: center;
        box-shadow: 0 15px 35px rgba(0,0,0,0.08);
        transition: all 0.4s ease;
        border: 2px solid transparent;
        position: relative;
        overflow: hidden;
        }
        .leader-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, #7ab27a, #a8cecb, #e7dfe8);
        transform: translateX(-100%);
        transition: transform 0.4s ease;
        }
        .leader-card:hover::before {
        transform: translateX(0);
        }
        .leader-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(122,178,122,0.15);
        border-color: #7ab27a;
        }
        .leader-portrait {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        margin: 0 auto 25px;
        background-size: cover;
        background-position: center;
        border: 4px solid #e7dfe8;
        transition: all 0.3s ease;
        position: relative;
        }
        .leader-card:hover .leader-portrait {
        border-color: #7ab27a;
        transform: scale(1.05);
        }
        .male-portrait {
        background-image: url('./product_gallery/photo-9.jpg');
        }
        .female-portrait {
        background-image: url('./product_gallery/photo-8.jpg');
        }
        .leader-name {
        font-size: 1.5rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 8px;
        }
        .leader-title {
        font-size: 1.1rem;
        color: #7ab27a;
        font-weight: 600;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        }
        .leader-description {
        color: #5a6c7d;
        line-height: 1.6;
        margin-bottom: 25px;
        font-size: 0.95rem;
        }
        .expertise-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
        }
        .expertise-tag {
        background: linear-gradient(135deg, #a8cecb, #e7dfe8);
        color: #2c3e50;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 500;
        transition: all 0.3s ease;
        }
        .expertise-tag:hover {
        background: linear-gradient(135deg, #7ab27a, #a8cecb);
        color: white;
        transform: scale(1.05);
        }
        .collective-expertise {
        padding: 100px 20px;
        background: white;
        position: relative;
        }
        .expertise-container {
        max-width: 1200px;
        margin: 0 auto;
        }
        .expertise-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        margin-top: 50px;
        }
        .expertise-content {
        padding: 0 20px;
        }
        .expertise-highlight {
        font-size: 1.1rem;
        color: #7ab27a;
        font-weight: 600;
        margin-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 1px;
        }
        .expertise-main-title {
        font-size: 2.5rem;
        font-weight: 800;
        color: #2c3e50;
        margin-bottom: 25px;
        line-height: 1.2;
        }
        .expertise-text {
        color: #5a6c7d;
        line-height: 1.8;
        margin-bottom: 30px;
        font-size: 1.05rem;
        }
        .credentials-list {
        list-style: none;
        padding: 0;
        margin: 0;
        }
        .credential-item {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        padding: 15px;
        background: #f8f9fa;
        border-radius: 10px;
        transition: all 0.3s ease;
        }
        .credential-item:hover {
        background: linear-gradient(135deg, rgba(122,178,122,0.1), rgba(168,206,203,0.1));
        transform: translateX(5px);
        }
        .credential-icon {
        width: 20px;
        height: 20px;
        background: #7ab27a;
        border-radius: 50%;
        margin-right: 15px;
        position: relative;
        flex-shrink: 0;
        }
        .credential-icon::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 12px;
        font-weight: bold;
        }
        .credential-text {
        color: #2c3e50;
        font-weight: 500;
        margin: 0;
        }
        .expertise-visual {
        position: relative;
        height: 500px;
        border-radius: 20px;
        overflow: hidden;
        background: linear-gradient(135deg, #7ab27a, #a8cecb);
        }
        .expertise-image {
        width: 100%;
        height: 100%;
        background-image: url('./product_gallery/photo-6.jpg');
        background-size: cover;
        background-position: center;
        position: relative;
        }
        .expertise-image::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(122,178,122,0.3), rgba(168,206,203,0.3));
        }
        .experience-metrics {
        padding: 100px 20px;
        background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
        color: white;
        text-align: center;
        }
        .metrics-container {
        max-width: 1000px;
        margin: 0 auto;
        }
        .metrics-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 50px;
        margin-top: 60px;
        }
        .metric-item {
        padding: 30px 20px;
        border-radius: 15px;
        background: rgba(255,255,255,0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255,255,255,0.2);
        transition: all 0.4s ease;
        }
        .metric-item:hover {
        transform: translateY(-5px);
        background: rgba(122,178,122,0.2);
        border-color: #7ab27a;
        }
        .metric-number {
        font-size: 3rem;
        font-weight: 900;
        color: #7ab27a;
        display: block;
        margin-bottom: 10px;
        }
        .metric-label {
        font-size: 1.1rem;
        font-weight: 500;
        color: rgba(255,255,255,0.9);
        margin: 0;
        }
        .metric-description {
        font-size: 0.9rem;
        color: rgba(255,255,255,0.7);
        margin-top: 8px;
        line-height: 1.4;
        }
        @media (max-width: 768px) {
        .about-main-title {
        font-size: 2.2rem;
        }
        .about-subtitle {
        font-size: 1.1rem;
        }
        .leadership-showcase {
        padding: 60px 20px;
        }
        .section-title {
        font-size: 2.2rem;
        }
        .leadership-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        }
        .leader-card {
        padding: 30px 20px;
        }
        .expertise-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        }
        .expertise-main-title {
        font-size: 2rem;
        }
        .expertise-visual {
        height: 300px;
        }
        .metrics-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        }
        .metric-number {
        font-size: 2.2rem;
        }
        }
        @media (max-width: 480px) {
        .about-hero-section {
        padding: 60px 15px;
        }
        .about-main-title {
        font-size: 1.8rem;
        }
        .leadership-showcase, .collective-expertise, .experience-metrics {
        padding: 50px 15px;
        }
        .leader-card {
        padding: 25px 15px;
        }
        .metrics-grid {
        grid-template-columns: 1fr;
        }
        }