:root {
    --brand-green: #0A4627;
    --brand-green-dark: #052b18;
    --brand-cream: #F5F0D9;
    --light-cream: #fbf8eb;
    --hover-green: #126b3f;
    --highlight-yellow: #ffc107;
    --text-dark: #333333;
    --text-light: #F5F0D9;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Open Sans', sans-serif; 
    background-color: var(--light-cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}
h1, h2, h3, .nav-logo, .btn {
    font-family: 'Russo One', sans-serif;
    text-transform: uppercase;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
header {
    background-color: var(--brand-green);
    color: var(--brand-cream);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo {
    font-size: 1.8rem;
    color: var(--brand-cream);
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-logo img { height: 60px; }
.nav-links {
    display: flex;
    gap: 30px;
}
.nav-links a {
    color: var(--brand-cream);
    font-weight: 600;
    font-size: 1.2rem;
    transition: color 0.3s;
}
.nav-links a:hover {
    color: var(--highlight-yellow);
}
.cta-btn-nav {
    background-color: var(--highlight-yellow);
    color: var(--brand-green);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.2s, background-color 0.2s;
}
.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}
.hero {
    background: linear-gradient(rgba(10, 70, 39, 0.85), rgba(10, 70, 39, 0.7)), url('../assets/bg.png'); 
    background-position: center;
    background-size: cover;
    color: var(--brand-cream);
    padding: 120px 0 100px;
    text-align: center;
}
.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}
.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
}
.hero-btn {
    display: inline-block;
    background-color: var(--highlight-yellow);
    color: var(--brand-green);
    padding: 15px 35px;
    border-radius: 5px;
    transition: all 0.3s;
}
.section { padding: 80px 0; }
.section-title {
    text-align: center;
    color: var(--brand-green);
    font-size: 2rem;
    margin-bottom: 60px;
}
.divider {
    width: 80px;
    height: 4px;
    background-color: var(--highlight-yellow);
    margin: 0 auto;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-bottom: 4px solid var(--brand-green);
}
.service-icon {
    background-color: var(--brand-green);
    color: var(--brand-cream);
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-content { padding: 30px; }
.bg-green {
    background-color: var(--brand-green);
    color: var(--brand-cream);
}
.bg-green .section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--brand-cream);
}
.about-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}
.about-text { 
    flex: 1; 
    min-width: 300px; 
}
.about-image {
    flex: 0 1 400px; 
}
.about-image img {
    max-width: 100%; 
    height: auto;
    border-radius: 6px;
    border: 2px solid var(--highlight-yellow);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.footer {
    background-color: var(--brand-green); 
    color: var(--brand-cream);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer h3 {
    color: var(--highlight-yellow); 
    font-size: 1.4rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
}
.footer p, 
.footer li {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--brand-cream);
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-col ul {
    padding: 0;
}
.footer-col a {
    transition: color 0.3s ease;
}
.footer-col a:hover {
    color: var(--highlight-yellow);
}
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    font-size: 0.9rem;
    color: rgba(245, 240, 217, 0.7); 
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--brand-green);
        flex-direction: column;
        padding: 20px;
    }
    .nav-links.active { display: flex; }
    .mobile-toggle { display: block; }
    /* Mobiel team foto */
    .about-image {
        flex: 1 1 100%;
        text-align: center;
    }
    .footer-grid {
        text-align: left;
        gap: 30px;
    }
}