
    :root {
        --primary: #ff6933;
        --secondary: #2D5016;
        --background-light: #f8f6f5;
        --background-dark: #23140f;
        --border-light: #ead5cd;
        --text-dark: #1d110c;
        --text-muted: #a15d45;
        --border-color: #f4eae6;
    }

    body {
        font-family: "Work Sans", sans-serif;
        background-color: var(--background-light);
        color: var(--text-dark);
    }

    .material-symbols-outlined {
        font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    }

    /* Header Styles */
.navbar-custom {
    background-color: rgba(248, 246, 245, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.navbar-brand-custom {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    background-image: url('images/logo.png');
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.brand-text {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--secondary);
    margin: 0;
}

.nav-link-custom {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 0.5rem 0;
    margin: 0 1rem;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.nav-link-custom:hover,
.nav-link-custom.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.search-box {
    background-color: var(--border-color);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    max-width: 320px;
}

.search-box input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    padding: 0 0.5rem;
    font-size: 0.875rem;
}

.search-box input::placeholder {
    color: var(--text-muted);
}

.btn-subscribe {
    background-color: var(--primary);
    color: white;
    font-weight: 700;
    padding: 0.5rem 1.25rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: all 0.3s;
}

.btn-subscribe:hover {
    background-color: var(--primary);
    opacity: 0.9;
    transform: scale(1.02);
}
    
    /* Hero Section */
    .hero-section {
        background: linear-gradient(rgba(19, 78, 74, 0.6) 0%, rgba(19, 78, 74, 0.9) 100%), 
                    url("https://lh3.googleusercontent.com/aida-public/AB6AXuDJgDVfsA-JPT-8pnSQ1JjT31Im1eDcgHogMlzF1Ax3GkLR7u0bAWcIBMie5FDKXKe9FWPuFstTQm0pUHujWUkrDPu_ujlOO2F4U7MjqjPgTkmaSzx_5wrnTgiwSHJS-2hxa8_1Wm4rW_rr2ofAbOKtzQoylQfBO6jwV-9I5bDpj4fTvqdRLdu2JBGaMrrj5EiQW5h1lOGai_v6ceHnspR4nqdvkwvSz9dRwnNvg6ESNlXNCBVFC7S3SiTvejWwh-bM2hI2RpidVzNk");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        min-height: 420px;
        border-radius: 0.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 3rem 2rem;
    }

    .hero-content {
        max-width: 768px;
        z-index: 10;
    }

    .hero-title {
        color: white;
        font-size: 2.5rem;
        font-weight: 900;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .hero-description {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.125rem;
        font-weight: 500;
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    .btn-hero-primary {
        background-color: var(--primary);
        color: white;
        font-weight: 700;
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
        border: none;
    }

    .btn-hero-secondary {
        background-color: white;
        color: var(--secondary);
        font-weight: 700;
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
        border: none;
    }

    @media (min-width: 576px) {
        .hero-title {
            font-size: 3.75rem;
        }
    }

    /* Values Section */
    .values-section {
        background-color: white;
        padding: 3rem 0;
    }

    .section-title {
        color: var(--text-dark);
        font-size: 1.875rem;
        font-weight: 900;
        line-height: 1.2;
        text-align: center;
        margin-bottom: 2rem;
    }

    .value-card {
        background-color: var(--background-light);
        border: 1px solid var(--border-light);
        border-radius: 0.75rem;
        padding: 2rem;
        transition: transform 0.3s ease;
    }

    .value-card:hover {
        transform: translateY(-4px);
    }

    .value-icon {
        background-image: url('asset/guarantee.png');
        background-size: contain;        
        background-repeat: no-repeat;
        background-position: center;
        color: var(--primary);
        width: 48px;
        height: 48px;
        border-radius: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
        }

    .value-icon-2 {
        background-image: url('asset/rapidite.png');
        background-size: contain;        
        background-repeat: no-repeat;
        background-position: center;
        color: var(--primary);
        width: 48px;
        height: 48px;
        border-radius: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .value-icon-3 {
        background-image: url('asset/objectivite.png');
        background-size: contain;        
        background-repeat: no-repeat;
        background-position: center;
        color: var(--primary);
        width: 48px;
        height: 48px;
        border-radius: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .value-title {
        color: var(--secondary);
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .value-description {
        color: var(--text-muted);
        font-size: 1rem;
        line-height: 1.6;
    }

    /* History Section */
    .history-title {
        color: var(--secondary);
        font-size: 1.875rem;
        font-weight: 900;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .history-text {
        color: var(--text-dark);
        font-size: 1.125rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .history-image-wrapper {
        aspect-ratio: 3Z/3;
        background-color: rgba(19, 78, 74, 0.1);
        border-radius: 1rem;
        overflow: hidden;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
        position: relative;
        min-height: 500px;
        height: 500px;
    }

    .history-image {
        width: 100%;
        height: 600px;
        object-fit: cover;
        filter: grayscale(50%);
        transition: filter 0.5s ease;
    }

    .history-image:hover {
        filter: grayscale(100%);
    }

    .image-caption {
        position: absolute;
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        background-color: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(8px);
        padding: 1rem;
        border-radius: 0.5rem;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }

    .image-caption p {
        color: var(--secondary);
        font-weight: 700;
        font-size: 0.875rem;
        font-style: italic;
        margin: 0;
    }

    /* Footer Styles */
    .footer {
    background-color: var(--secondary);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    background-image: url('images/logo.png');
    width: 100px;
    height: 100px;
    display: flex;
    border-radius: 0.5rem;
    background-size: cover;
    background-position: center;
    background-color: var(--text-muted);
}

.footer-brand {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--primary);
    margin: 0;
}

.footer-desc {
    font-size: 0.875rem;
    color: #d1d5db;
    line-height: 1.6;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #9ca3af;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: var(--primary);
    color: white;
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    color: #6b7280;
}

.footer-bottom a {
    color: #6b7280;
    text-decoration: none;
    margin: 0 0.75rem;
}

.footer-bottom a:hover {
    color: white;
}