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

:root {
    --primary-color: #1b5e20;
    --secondary-color: #4caf50;
    --light-bg: #f5f5f5;
    --dark-text: #212121;
    --border-light: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
}

.navbar-brand {
    color: var(--primary-color) !important;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
}

.nav-link {
    color: var(--dark-text) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-section h1 {
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-section .lead {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
}

.hero-section img {
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.btn-success {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    font-weight: 600;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(27, 94, 32, 0.3);
}

.btn-outline-secondary {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-outline-secondary:hover {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
}

.card {
    transition: all 0.3s ease;
    border-radius: 8px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15) !important;
}

.text-success {
    color: var(--primary-color) !important;
}

.bg-dark {
    background-color: #1a1a1a !important;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--dark-text);
}

.form-control {
    border: 1px solid var(--border-light);
    border-radius: 5px;
    padding: 0.75rem;
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 0.2rem rgba(27, 94, 32, 0.25);
}

.form-check-input:checked {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

.border-bottom {
    border-color: var(--border-light) !important;
}

.text-muted {
    color: #757575 !important;
}

.cookie-banner {
    background-color: #2c2c2c;
    color: white;
    padding: 20px 0;
    border-bottom: 3px solid var(--primary-color);
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}

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

.cookie-banner a {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
        min-height: auto;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section .lead {
        font-size: 1rem;
    }

    .display-4 {
        font-size: 2.5rem;
    }

    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }

    .col-md-4,
    .col-md-6,
    .col-md-8 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .text-right {
        text-align: left !important;
    }

    .btn-sm {
        padding: 0.5rem 1rem !important;
        font-size: 0.875rem !important;
    }

    .row {
        margin-bottom: 0 !important;
    }
}

@media (max-width: 576px) {
    .display-4 {
        font-size: 1.75rem;
    }

    .hero-section h1 {
        font-size: 1.5rem;
    }

    .navbar-brand {
        font-size: 1.25rem;
    }

    body {
        font-size: 14px;
    }

    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}
