:root {
            /* Extracted exact colors from the reference image */
            --primary-dark: #0a3d1c; 
            --primary-light: #18632e;
            --text-dark: #333333;
            --text-grey: #666666;
            --bg-light: #f9f9f9;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }

        html, body {
            overflow-x: hidden;
            width: 100%;
        }

        body {
            background-color: var(--bg-light);
        }

        /* Top Bar Styles */
        .top-bar {
            background-color: var(--primary-dark);
            color: #ffffff;
            font-size: 12px;
            padding: 10px 0;
            letter-spacing: 0.3px;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-bar-left {
            display: flex;
            align-items: center;
        }

        .top-bar-left i {
            margin-right: 8px;
            font-size: 13px;
        }

        .top-bar-right {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .contact-info {
            display: flex;
            gap: 30px;
        }

        .contact-info span {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .contact-info span i {
            font-size: 14px;
        }

        .social-icons {
            display: flex;
            gap: 18px;
            align-items: center;
        }

        .social-icons a {
            color: #ffffff;
            text-decoration: none;
            font-size: 14px;
            transition: opacity 0.3s ease;
        }

        .social-icons a:hover {
            opacity: 0.8;
        }

        /* Main Navigation Styles */
        .main-nav {
            background-color: #ffffff;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .main-nav .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 40px;
        }

        /* Logo styling */
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            gap: 12px;
        }

        .logo img {
            height: 55px; 
            width: auto;
            object-fit: contain;
        }

        .logo-fallback {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-icon-svg {
            width: 45px;
            height: 45px;
        }

        .logo-text-wrapper {
            display: flex;
            flex-direction: column;
        }

        .logo-title {
            color: var(--primary-dark);
            font-weight: 700;
            font-size: 21px;
            line-height: 1.1;
            letter-spacing: 0.5px;
        }

        .logo-subtitle {
            color: #888888;
            font-size: 11px;
            letter-spacing: 4.5px;
            font-weight: 500;
            margin-top: 2px;
        }

        /* Navigation Links */
        .nav-links {
            display: flex;
            list-style: none;
            gap: 32px;
            align-items: center;
            margin-left: auto;
            margin-right: 40px;
        }

        .nav-links li a {
            text-decoration: none;
            color: var(--text-dark);
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links li a:hover {
            color: var(--primary-dark);
        }

        /* Active Link Underline */
        .nav-links li.active a {
            color: var(--primary-dark);
        }

        .nav-links li.active a::after {
            content: '';
            display: block;
            width: 24px;
            height: 2px;
            background-color: var(--primary-dark);
            position: absolute;
            bottom: -6px;
            left: 50%;
            transform: translateX(-50%);
        }

        .nav-links li.dropdown a {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .nav-links li.dropdown a i {
            font-size: 10px;
            color: #777;
        }

        /* Quote Button */
        .quote-btn {
            background-color: var(--primary-dark);
            color: #ffffff;
            text-decoration: none;
            padding: 12px 26px;
            border-radius: 30px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.5px;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .quote-btn:hover {
            background-color: var(--primary-light);
            transform: translateY(-1px);
        }

        /* ------------------------------------- */
        /* HERO SECTION STYLES                   */
        /* ------------------------------------- */
        
        .hero-section {
            position: relative;
            width: 100%;
            min-height: 80vh; 
            background-image: url('images/hero-bg.png');
            background-size: cover;
            background-position: center right;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            background-color: #f1f8eb; /* Fallback light green background */
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(241, 248, 235, 0.8) 40%, rgba(255, 255, 255, 0.1) 100%);
            z-index: 1;
        }

        .hero-container {
            width: 100%;
            display: flex;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            max-width: 720px;
            padding: 60px 0;
            z-index: 2;
        }

        .hero-subtitle {
            color: var(--primary-dark);
            font-weight: 700;
            font-size: 13px;
            letter-spacing: 1.5px;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: 64px;
            line-height: 1.15;
            color: #1a1a1a;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .hero-script {
            font-family: 'Great Vibes', cursive;
            font-size: 46px;
            color: #c99c4d; /* Golden color matching the reference */
            font-weight: 400;
            margin-bottom: 25px;
            letter-spacing: 1px;
        }

        .hero-text {
            font-size: 16px;
            line-height: 1.7;
            color: #555555;
            margin-bottom: 45px;
            max-width: 520px;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            margin-bottom: 70px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 30px;
            border-radius: 6px;
            font-weight: 700;
            font-size: 13px;
            text-transform: uppercase;
            text-decoration: none;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }
        
        .btn i {
            font-size: 12px;
        }

        .btn-primary {
            background-color: var(--primary-dark);
            color: #ffffff;
            border: 2px solid var(--primary-dark);
        }

        .btn-primary:hover {
            background-color: var(--primary-light);
            border-color: var(--primary-light);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--primary-dark);
            border: 2px solid var(--primary-dark);
        }

        .btn-outline:hover {
            background-color: var(--primary-dark);
            color: #ffffff;
        }

        /* Features Row */
        .hero-features {
            display: flex;
            gap: 30px; 
            align-items: center;
            flex-wrap: wrap; 
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(255, 255, 255, 0.65); /* Frosted glass pill for better contrast */
            padding: 8px 20px 8px 8px;
            border-radius: 40px;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.6);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }
        
        .feature-item:hover {
            transform: translateY(-2px);
            background: rgba(255, 255, 255, 0.85);
        }

        .feature-icon {
            width: 44px;
            height: 44px;
            background-color: #e3ebd6;
            color: var(--primary-dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 19px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.06);
        }

        .feature-text {
            display: flex;
            flex-direction: column;
        }

        .feature-text strong {
            font-size: 13px;
            color: #000000; /* Pure black for maximum contrast */
            font-weight: 800;
            margin-bottom: 2px;
        }

        .feature-text span {
            font-size: 11.5px;
            color: #333333; /* Darker grey */
            font-weight: 600;
        }

        /* Responsive Adjustments */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 54px;
            }
            .hero-features {
                gap: 20px;
            }
        }
        @media (max-width: 1150px) {
            .nav-links {
                gap: 15px;
                margin-right: 20px;
            }
            .nav-links li a {
                font-size: 11px;
            }
            .container {
                padding: 0 20px;
            }
            .main-nav .container {
                padding: 15px 20px;
            }
        }

        /* ------------------------------------- */
        /* PRODUCTS SECTION STYLES               */
        /* ------------------------------------- */
        .products-section {
            padding: 80px 20px;
            background-color: #fbfdf9; /* Faint green tint matching reference background */
            text-align: center;
            position: relative;
        }

        .section-subtitle {
            color: var(--primary-dark);
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-bottom: 8px;
        }

        .section-subtitle::before,
        .section-subtitle::after {
            content: '';
            display: block;
            width: 30px;
            height: 1px;
            background-color: #d1d9cd;
        }

        .section-subtitle i {
            color: #799e69; 
            font-size: 13px;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 40px;
            color: #222;
            font-style: italic;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .title-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-bottom: 50px;
        }

        .title-divider span {
            display: block;
            width: 30px;
            height: 1px;
            background-color: #d1d9cd;
        }

        .title-divider i {
            font-size: 6px;
            color: #c99c4d; 
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
            max-width: 1500px;
            margin: 0 auto 50px auto;
            padding: 0 10px;
        }

        .product-card {
            background: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(0,0,0,0.03);
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        }

        .product-img-wrapper {
            width: 100%;
            height: 190px;
            background-color: #f7f7f7;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .product-card:hover .product-img-wrapper img {
            transform: scale(1.05);
        }

        .product-info {
            padding: 25px 15px;
            display: flex;
            flex-direction: column;
            align-items: center;
            flex-grow: 1;
        }

        .product-title {
            color: var(--primary-dark);
            font-size: 15px;
            font-weight: 800;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }

        .product-desc {
            font-size: 12.5px;
            color: #666;
            line-height: 1.5;
            margin-bottom: 25px;
            flex-grow: 1;
        }

        .product-link {
            font-size: 11px;
            font-weight: 800;
            color: #799e69; /* Subtle green matching reference slightly */
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: color 0.3s ease;
            margin-top: auto;
        }

        .product-link i {
            color: #c99c4d; /* Golden arrow */
        }

        .product-link:hover {
            color: var(--primary-dark);
        }

        .btn-view-all {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 35px;
            background-color: var(--primary-dark);
            color: #fff;
            text-decoration: none;
            font-size: 13px;
            font-weight: 700;
            border-radius: 8px;
            letter-spacing: 0.5px;
            transition: background-color 0.3s ease;
        }
        
        .btn-view-all i {
            font-size: 12px;
        }

        .btn-view-all:hover {
            background-color: var(--primary-light);
        }

        @media (max-width: 1400px) {
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .section-title {
                font-size: 32px;
            }
        }

        @media (max-width: 480px) {
            .products-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ------------------------------------- */
        /* ABOUT US SECTION STYLES               */
        /* ------------------------------------- */
        .about-section {
            display: flex;
            width: 100%;
            background-color: #0b381a; /* slightly darker green */
            position: relative;
        }

        .about-content-wrapper {
            flex: 1;
            padding: 80px 60px 80px 10%;
            color: #ffffff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }
        
        .about-image-wrapper {
            flex: 1;
            position: relative;
            min-height: 500px; 
        }
        
        .about-image-wrapper img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .quality-badge {
            position: absolute;
            top: 50%;
            right: 0; 
            transform: translate(50%, -50%); 
            width: 160px;
            height: 160px;
            background: #ffffff;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            z-index: 10;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            padding: 10px;
        }
        
        .quality-badge-inner {
            width: 100%;
            height: 100%;
            border: 1.5px dashed #c99c4d;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--primary-dark);
        }

        .quality-badge i {
            color: #c99c4d;
            font-size: 20px;
            margin-bottom: 5px;
        }

        .quality-badge span {
            font-family: 'Playfair Display', serif;
            font-weight: 800;
            font-size: 13px;
            line-height: 1.2;
            letter-spacing: 0.5px;
        }

        .about-subtitle {
            font-size: 11px;
            font-weight: 800;
            color: #c99c4d;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .about-title {
            font-family: 'Playfair Display', serif;
            font-size: 42px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 25px;
            max-width: 500px;
        }

        .about-desc {
            font-size: 13px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 30px;
            max-width: 550px;
        }

        .about-list {
            list-style: none;
            margin-bottom: 40px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .about-list li {
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 12px;
            color: rgba(255, 255, 255, 0.9);
        }

        .about-list li i {
            color: #c99c4d; 
            font-size: 15px;
        }

        .btn-about {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            background-color: transparent;
            color: #ffffff;
            border: 1px solid rgba(255,255,255,0.4);
            border-radius: 6px;
            font-size: 11px;
            font-weight: 700;
            text-decoration: none;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            width: fit-content;
        }

        .btn-about:hover {
            background-color: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.8);
        }

        /* ------------------------------------- */
        /* WHY CHOOSE US SECTION STYLES          */
        /* ------------------------------------- */
        .why-choose-us-section {
            padding: 80px 20px;
            background-color: #ffffff;
            text-align: center;
        }

        .why-subtitle {
            color: var(--primary-dark);
            font-size: 13px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 60px;
        }
        
        .why-subtitle i {
            color: #799e69;
        }

        .features-row {
            display: flex;
            justify-content: center;
            max-width: 1400px;
            margin: 0 auto;
            flex-wrap: wrap; 
        }

        .feature-box {
            flex: 1;
            padding: 0 15px;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            min-width: 150px;
        }

        .feature-box:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 20%;
            right: 0;
            height: 60%;
            width: 1px;
            background-color: #eaeaea;
        }

        .feature-box-icon {
            font-size: 28px;
            color: var(--primary-dark);
            margin-bottom: 18px;
        }

        .feature-box h4 {
            font-size: 12px;
            font-weight: 800;
            color: #222;
            margin-bottom: 8px;
        }

        .feature-box p {
            font-size: 11px;
            color: #777;
            line-height: 1.6;
            max-width: 150px;
        }

        /* ------------------------------------- */
        /* STATS SECTION STYLES                  */
        /* ------------------------------------- */
        .stats-section {
            background-color: #0b381a;
            color: #ffffff;
            padding: 60px 20px;
            display: flex;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .stats-row {
            display: flex;
            justify-content: center;
            max-width: 1200px;
            width: 100%;
        }

        .stat-box {
            flex: 1;
            text-align: center;
            position: relative;
            padding: 0 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .stat-box:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 20%;
            right: 0;
            height: 60%;
            width: 1px;
            background-color: rgba(255, 255, 255, 0.15);
        }

        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 5px;
            line-height: 1;
        }

        .stat-label {
            font-size: 12px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.7);
        }

        @media (max-width: 1024px) {
            .about-section {
                flex-direction: column;
            }
            .quality-badge {
                top: 0;
                left: 50%;
                transform: translate(-50%, -50%);
            }
            .about-content-wrapper {
                padding: 60px 40px;
            }
            .features-row, .stats-row {
                flex-wrap: wrap;
                gap: 40px 0;
            }
            .feature-box, .stat-box {
                flex: 0 0 33.33%;
            }
            .feature-box:nth-child(3)::after, .stat-box:nth-child(2)::after {
                display: none;
            }
        }
        @media (max-width: 600px) {
            .feature-box, .stat-box {
                flex: 0 0 50%;
            }
            .feature-box:nth-child(even)::after, .stat-box:nth-child(even)::after {
                display: none;
            }
        }

        /* ------------------------------------- */
        /* TESTIMONIALS SECTION STYLES           */
        /* ------------------------------------- */
        .testimonials-section {
            padding: 80px 0;
            background-color: #f9fbf7;
            position: relative;
            display: flex;
        }

        .testimonials-section::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 45%; 
            height: 100%;
            background-image: url('images/Container.png');
            background-size: cover;
            background-position: left center;
            z-index: 1;
        }

        .testimonials-container {
            width: 55%; 
            position: relative;
            z-index: 2;
            padding: 0 40px 0 8%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .testimonials-subtitle {
            color: var(--primary-dark);
            font-size: 13px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 30px;
        }

        .testimonials-subtitle i {
            color: #c99c4d;
        }

        .testimonial-slider {
            position: relative;
            display: flex;
            align-items: center;
            width: 100%;
            max-width: 650px;
        }

        .testimonial-card {
            background: #ffffff;
            border-radius: 12px;
            padding: 40px 40px 40px 70px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.05);
            position: relative;
            flex: 1;
            display: none; 
            animation: fadeIn 0.5s ease;
            margin: 0 50px;
        }

        .testimonial-card.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .quote-icon {
            font-size: 45px;
            color: #c99c4d;
            position: absolute;
            top: 35px;
            left: 25px;
            font-family: 'Georgia', serif;
            line-height: 1;
        }

        .testimonial-text {
            font-size: 13px;
            color: #555;
            line-height: 1.8;
            margin-bottom: 25px;
            padding-left: 0;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
            padding-left: 0;
        }

        .author-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            background-color: #eee;
        }

        .author-info h4 {
            color: var(--primary-dark);
            font-size: 14px;
            font-weight: 800;
            margin-bottom: 3px;
        }

        .author-info p {
            color: #777;
            font-size: 11px;
        }

        .slider-arrow {
            width: 38px;
            height: 38px;
            background: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-dark);
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            border: 1px solid rgba(0,0,0,0.05);
            cursor: pointer;
            transition: all 0.3s ease;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 5;
        }

        .slider-arrow:hover {
            color: #ffffff;
            background-color: var(--primary-dark);
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        }

        .slider-prev {
            left: 0;
        }

        .slider-next {
            right: 0;
        }

        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 25px;
            position: relative;
            z-index: 2;
        }

        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #d1d9cd;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .dot.active {
            background-color: var(--primary-dark);
        }

        /* ------------------------------------- */
        /* CERTIFICATIONS SECTION STYLES         */
        /* ------------------------------------- */
        .certifications-section {
            padding: 60px 20px 80px 20px;
            background-color: #ffffff;
            text-align: center;
        }

        .cert-subtitle {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-bottom: 50px;
        }

        .cert-subtitle span {
            display: block;
            flex: 1;
            height: 1px;
            background-color: #eaeaea;
            max-width: 400px;
        }

        .cert-title-text {
            color: var(--primary-dark);
            font-size: 14px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .cert-title-text i {
            color: #799e69;
        }

        .cert-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
        }

        .cert-logo {
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex: 1;
            min-width: 100px;
            max-width: 140px;
        }

        .cert-logo img {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
        }
        
        .cert-fallback {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            border: 2px solid var(--primary-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
            color: var(--primary-dark);
            text-align: center;
            background: #fff;
        }

        /* ------------------------------------- */
        /* FOOTER STYLES                         */
        /* ------------------------------------- */
        .footer {
            background-color: #0b381a;
            color: #ffffff;
            font-size: 13px;
            position: relative;
        }

        .footer-top {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 80px 20px 60px;
            max-width: 1400px;
            margin: 0 auto;
            gap: 30px;
            position: relative;
            z-index: 2;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background-image: url('images/world-map-pattern.png'); 
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            opacity: 0.05;
            z-index: 1;
            pointer-events: none;
        }

        .footer-col {
            flex: 1;
            min-width: 180px;
            position: relative;
        }
        
        .footer-col:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 10px;
            right: -15px;
            width: 1px;
            height: calc(100% - 20px);
            background-color: rgba(255,255,255,0.1);
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
        }

        .footer-logo-icon {
            font-size: 28px;
            color: #fff;
            border: 2px solid #fff;
            border-radius: 50%;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .footer-logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: 1px;
        }

        .footer-logo-text span {
            display: block;
            font-family: 'Montserrat', sans-serif;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 3px;
            color: #c99c4d;
            margin-top: 3px;
        }

        .footer-about-text {
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.8;
            max-width: 250px;
            font-size: 12px;
        }

        .footer-title {
            font-size: 13px;
            font-weight: 800;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px 20px;
        }

        .footer-links li a {
            color: rgba(255, 255, 255, 0.75);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 12.5px;
        }

        .footer-links li a:hover {
            color: #c99c4d;
        }

        .footer-contact-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .footer-contact-list li {
            display: flex;
            gap: 15px;
            align-items: flex-start;
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.5;
            font-size: 12px;
        }

        .footer-contact-list li i {
            color: #c99c4d;
            font-size: 16px;
            margin-top: 2px;
        }

        .footer-socials {
            display: flex;
            gap: 12px;
        }

        .footer-socials a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #ffffff;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-socials a:hover {
            background-color: #c99c4d;
            border-color: #c99c4d;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 25px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            color: rgba(255, 255, 255, 0.6);
            font-size: 12px;
            position: relative;
            z-index: 2;
        }

        .footer-bottom-links {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: #ffffff;
        }

        .footer-bottom-links span {
            color: rgba(255, 255, 255, 0.3);
        }

        @media (max-width: 992px) {
            .footer-col:not(:last-child)::after {
                display: none;
            }
            .footer-top {
                flex-direction: column;
                gap: 40px;
            }
        }
        @media (max-width: 768px) {
            .footer-bottom {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
        }

        /* ============================================================== */
        /* INTERNAL PAGE STYLES (GLOBAL)                                  */
        /* ============================================================== */

        /* Internal Page Header */
        .page-header {
            padding: 80px 0;
            background-color: #fcfcfc;
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .page-header::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 45%;
            height: 100%;
            background-size: cover;
            background-position: center left;
            z-index: 1;
        }

        .page-header-container {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 2;
            display: flex;
        }

        .page-header-content {
            width: 55%;
            padding-right: 40px;
        }

        .page-header-title {
            font-family: 'Playfair Display', serif;
            font-size: 55px;
            color: var(--primary-dark);
            line-height: 1.1;
            margin-bottom: 20px;
        }
        
        .page-header-title span.script-text {
            font-family: 'Great Vibes', cursive;
            color: #c99c4d;
            font-size: 65px;
            font-weight: 400;
            display: block;
            margin-top: -10px;
        }

        .page-header-divider {
            width: 60px;
            height: 2px;
            background-color: #c99c4d;
            margin: 20px 0;
            position: relative;
        }
        
        .page-header-divider::before {
            content: '';
            position: absolute;
            left: -5px;
            top: -2px;
            width: 6px;
            height: 6px;
            background-color: #c99c4d;
            border-radius: 50%;
        }

        .page-header-subtitle {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 15px;
        }

        .page-header-text {
            font-size: 14px;
            color: #555;
            line-height: 1.8;
        }

        /* FAQ Accordion */
        .faq-section {
            padding: 60px 20px;
            background-color: #fbfdf9;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: #ffffff;
            border: 1px solid #eaeaea;
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.03);
        }

        .faq-question {
            padding: 20px 25px;
            display: flex;
            align-items: center;
            gap: 15px;
            cursor: pointer;
            font-weight: 700;
            color: var(--primary-dark);
            font-size: 15px;
        }
        
        .faq-question i.fa-question-circle {
            color: #18632e;
            font-size: 18px;
        }

        .faq-question i.fa-chevron-down {
            margin-left: auto;
            color: #888;
            transition: transform 0.3s;
        }
        
        .faq-item.active .faq-question i.fa-chevron-down {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 25px 25px 55px;
            font-size: 13.5px;
            color: #555;
            line-height: 1.6;
            display: none;
        }
        
        .faq-item.active .faq-answer {
            display: block;
        }

        /* Forms */
        .custom-form {
            background: #ffffff;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.06);
        }
        
        .form-row {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .form-group {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            font-size: 13px;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 8px;
        }
        
        .form-group label span {
            color: red;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 14px;
            font-family: 'Montserrat', sans-serif;
            background-color: #fcfcfc;
            color: #333;
        }
        
        .form-control:focus {
            outline: none;
            border-color: #18632e;
            background-color: #fff;
        }

        textarea.form-control {
            resize: vertical;
            min-height: 100px;
        }

        .btn-submit {
            background-color: #0a3d1c;
            color: #fff;
            border: none;
            padding: 15px 30px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
        }
        
        .btn-submit:hover {
            background-color: #c99c4d;
        }

        /* Info Grids (Policies / Terms) */
        .info-grid-section {
            padding: 60px 20px;
            background-color: #fff;
        }
        
        .info-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .info-card {
            background: #fbfdf9;
            border: 1px solid #f0f0f0;
            border-radius: 10px;
            padding: 30px;
            display: flex;
            gap: 20px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background: #eef5eb;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #18632e;
            font-size: 20px;
            flex-shrink: 0;
        }

        .info-content h3 {
            font-size: 16px;
            color: var(--primary-dark);
            margin-bottom: 10px;
            font-weight: 700;
        }
        
        .info-content p {
            font-size: 13.5px;
            color: #666;
            line-height: 1.6;
            margin: 0;
        }

        /* Call to Action Banner (Green) */
        .cta-banner {
            background-color: #0a3d1c;
            padding: 40px 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            position: relative;
            overflow: hidden;
        }
        
        .cta-banner::before, .cta-banner::after {
            content: '';
            position: absolute;
            width: 150px;
            height: 150px;
            background-image: url('images/leaf.png'); /* Assumes leaf exists */
            background-size: contain;
            background-repeat: no-repeat;
            opacity: 0.1;
        }
        .cta-banner::before { top: -50px; left: -20px; transform: rotate(45deg); }
        .cta-banner::after { bottom: -50px; right: -20px; transform: rotate(-135deg); }

        .cta-banner-text {
            color: #fff;
            font-size: 22px;
            font-weight: 700;
            z-index: 2;
        }
        
        .cta-banner-sub {
            color: #e0e0e0;
            font-size: 14px;
            margin-top: 5px;
            font-weight: 400;
        }
        
        .cta-buttons {
            display: flex;
            gap: 15px;
            z-index: 2;
        }
        
        .btn-gold {
            background-color: #c99c4d;
            color: #fff;
            padding: 12px 25px;
            border-radius: 6px;
            font-weight: 700;
            font-size: 13px;
            text-transform: uppercase;
            text-decoration: none;
            display: inline-block;
            transition: 0.3s;
        }
        .btn-gold:hover { background-color: #b3883a; }
        
        .btn-outline-white {
            background-color: transparent;
            color: #fff;
            border: 1px solid #fff;
            padding: 12px 25px;
            border-radius: 6px;
            font-weight: 700;
            font-size: 13px;
            text-transform: uppercase;
            text-decoration: none;
            display: inline-block;
            transition: 0.3s;
        }
        .btn-outline-white:hover { background-color: #fff; color: #0a3d1c; }

        /* ============================================================== */
        /* COMPREHENSIVE MOBILE RESPONSIVE STYLES                         */
        /* ============================================================== */

        /* Top Bar Mobile */
        @media (max-width: 768px) {
            .top-bar .container {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
            .top-bar-right {
                flex-direction: column;
                gap: 10px;
            }
            .contact-info {
                flex-direction: column;
                gap: 5px;
            }
        }

        /* Header & Hamburger Mobile */
        .mobile-menu-btn {
            display: none;
            font-size: 24px;
            color: var(--primary-dark);
            cursor: pointer;
            background: none;
            border: none;
            padding: 10px;
        }

        @media (max-width: 1024px) {
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #ffffff;
                flex-direction: column;
                align-items: flex-start;
                padding: 0;
                gap: 0;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }
            
            .nav-links.active {
                max-height: 500px;
            }
            
            .nav-links li {
                width: 100%;
                border-bottom: 1px solid #f0f0f0;
            }
            
            .nav-links li a {
                display: block;
                padding: 15px 40px;
            }
            
            .nav-links li.active a::after {
                display: none;
            }
            
            .quote-btn {
                display: none; /* Hide quote button in header on mobile */
            }
        }

        /* Hero Section Mobile */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 42px;
            }
            .hero-script {
                font-size: 32px;
            }
            .hero-content {
                padding: 40px 0;
                text-align: center;
            }
            .hero-buttons {
                justify-content: center;
                flex-direction: column;
                gap: 15px;
                margin-bottom: 40px;
            }
            .hero-features {
                justify-content: center;
            }
            .hero-section {
                background-position: 70% center; 
            }
        }
        @media (max-width: 480px) {
            .hero-title {
                font-size: 32px;
                line-height: 1.2;
            }
            .hero-script {
                font-size: 28px;
            }
            .hero-text {
                font-size: 14px;
                line-height: 1.5;
            }
            .feature-item {
                width: 100%;
                justify-content: center;
            }
        }

        /* About Section Mobile */
        @media (max-width: 768px) {
            .about-content-wrapper {
                padding: 40px 20px;
            }
            .about-title {
                font-size: 32px;
            }
            .about-image-wrapper {
                min-height: 350px;
            }
        }

        /* Certifications Mobile */
        @media (max-width: 768px) {
            .cert-logos {
                gap: 20px;
            }
            .cert-logo {
                min-width: 80px;
            }
        }

        /* Testimonials Mobile */
        @media (max-width: 992px) {
            .testimonials-section::after {
                width: 100%;
                opacity: 0.2; /* Fade image behind on mobile */
            }
            .testimonials-container {
                width: 100%;
                padding: 0 20px;
            }
            .testimonial-card {
                margin: 0;
            }
        }
        @media (max-width: 768px) {
            .testimonial-card {
                margin: 0;
                padding: 40px 20px 30px 20px;
            }
            .quote-icon {
                font-size: 30px;
                top: 15px;
                left: 15px;
            }
            .testimonial-text {
                font-size: 13px;
                padding-left: 15px;
            }
            .testimonial-author {
                padding-left: 15px;
            }
            .slider-arrow {
                width: 35px;
                height: 35px;
            }
            .testimonial-slider {
                padding-bottom: 50px;
            }
            .slider-arrow {
                top: auto;
                bottom: 0;
                transform: none;
            }
            .slider-prev {
                left: 30%;
            }
            .slider-next {
                right: 30%;
            }
        }

        /* Footer Mobile */
        @media (max-width: 768px) {
            .footer-top {
                padding: 40px 20px;
                gap: 30px;
            }
            .footer-links-grid {
                grid-template-columns: 1fr;
            }
            .footer-bottom-links {
                justify-content: center;
            }
        }

        /* Internal Pages Mobile */
        @media (max-width: 992px) {
            .page-header-container {
                flex-direction: column;
                text-align: center;
                padding: 0 20px;
            }
            .page-header-content {
                width: 100%;
                padding-right: 0;
            }
            .page-header-divider {
                margin: 20px auto;
            }
            .page-header::after {
                width: 100%;
                opacity: 0.15;
            }
            .form-row {
                flex-direction: column;
            }
            .cta-banner {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }
        }
        @media (max-width: 768px) {
            .page-header-title {
                font-size: 40px;
            }
            .page-header-title span.script-text {
                font-size: 50px;
            }
            .info-grid {
                grid-template-columns: 1fr;
            }
            .custom-form {
                padding: 20px;
            }
        }