/* Global Styles */
:root {
    --primary-color: #2e7d5e;
    --secondary-color: #f8f8f8;
    --text-color: #333;
    --light-gray: #f0f0f0;
    --medium-gray: #888;
    --dark-gray: #555;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inria Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3 {
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s;
    text-align: center;
}

.btn:hover {
    background-color: #236348;
}

.btn-full {
    width: 100%;
}

.btn-success {
    background-color: var(--primary-color);
}

.btn-secondary {
    background-color: #888;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px;
    transition: transform 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    background: #126C45;
    color: white;
}

.hero-image {
    width: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    background: #126C45;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.hero-content .btn {
    margin-top: 1rem;
}

/* About Section */
.about {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.about h2 {
    color: var(--primary-color);
}

.about p {
    margin-bottom: 1.5rem;
}

.about ul {
    list-style: disc;
    margin-left: 1.5rem;
}

/* Services Section */
.services {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.services h2 {
    color: var(--primary-color);
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.service-card {
    border-radius: 6px;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Team Section */
.team {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--primary-color);
    color: white;
}

.team-image {
    height: 100%;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-content {
    padding: 5rem;
}

.team-content h2 {
    margin-bottom: 2rem;
}

.team-content p {
    margin-bottom: 1.5rem;
}

.team-content ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Advantages Section */
.advantages {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.advantages h2 {
    color: var(--primary-color);
    text-align: center;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.advantage-card {
    text-align: center;
    transition: transform 0.3s;
}

.advantage-card:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.advantage-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.advantage-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    padding: 5rem 5%;
    max-width: 600px;
    margin: 0 auto;
}

.contact h2 {
    color: var(--primary-color);
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

/* Contact Info Section */
.contact-info {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2 {
    color: var(--primary-color);
    text-align: center;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.contact-text {
    line-height: 2;
}

.contact-text a {
    color: var(--primary-color);
}

.contact-image {
    height: 300px;
    overflow: hidden;
    border-radius: 6px;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem 5%;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a {
    margin: 0 1rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    text-align: center;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-banner h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cookie-banner p {
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Thank You Page */
.thank-you {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.thank-you h1 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.thank-you p {
    margin-bottom: 2rem;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .team {
        grid-template-columns: 1fr;
    }
    
    .team-image {
        height: 400px;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    body {
        font-size: 0.9rem;
    }
    
    .nav-links {
        position: absolute;
        right: 0;
        top: 70px;
        background-color: white;
        width: 100%;
        flex-direction: column;
        align-items: center;
        transform: translateY(-150%);
        transition: transform 0.3s ease-in;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .nav-links li {
        margin: 1rem 0;
    }
    
    .burger {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .service-grid, .advantage-grid {
        grid-template-columns: 1fr;
    }
    
    .team-content {
        padding: 3rem 5%;
    }
}

@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .team-image {
        height: 300px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .btn {
        padding: 10px 20px;
    }
}