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

:root {
    --primary-color: #2d5016;
    --secondary-color: #ff8c42;
    --dark-gray: #333333;
    --light-gray: #f5f5f5;
    --accent-blue: #003d7a;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

html, body {
    background-color: var(--white);
    color: var(--dark-gray);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--dark-gray);
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

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

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

.navbar {
    background-color: var(--white) !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--accent-blue) !important;
}

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

.nav-link:hover {
    color: var(--accent-blue) !important;
}

/* Button Styles */
.btn {
    border-radius: 8px;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-green {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-green:hover {
    background-color: #245010;
    color: var(--white);
    border-color: #245010;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: #e67e2a;
    color: var(--white);
    border-color: #e67e2a;
}

.btn-outline-primary {
    color: var(--accent-blue);
    border-color: var(--accent-blue);
    background-color: transparent;
}

.btn-outline-primary:hover {
    background-color: var(--accent-blue);
    color: var(--white);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    border-radius: 12px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    background: rgba(0, 0, 0, 0.4);
    padding: 3rem;
    border-radius: 8px;
    max-width: 600px;
}

.hero-content h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

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

.hero-section-small {
    background-color: var(--light-gray);
    padding: 3rem 0;
    text-align: center;
}

.hero-section-small h1 {
    margin-bottom: 1rem;
}

.hero-section-small p {
    color: #666;
    font-size: 1.1rem;
}

/* Status Bar */
.status-bar {
    background-color: var(--light-gray);
}

.status-bar strong {
    color: var(--accent-blue);
    display: block;
    margin-bottom: 0.5rem;
}

/* Index Chips */
.index-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.chip {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--light-gray);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    color: var(--dark-gray);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.chip:hover {
    background-color: var(--accent-blue);
    color: var(--white);
    border-color: var(--accent-blue);
}

a.chip {
    text-decoration: none;
}

/* Product Cards */
.product-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.product-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.product-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-content h5 {
    margin-bottom: 0.75rem;
    color: var(--dark-gray);
}

.product-meta {
    margin-bottom: 1rem;
}

.product-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.price {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-top: auto;
    margin-bottom: 1rem;
}

/* Info Cards */
.info-card {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-blue);
    transition: all 0.3s ease;
    height: 100%;
}

.info-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.info-card h4 {
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.info-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FAQ Cards */
.faq-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.faq-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-blue);
}

.faq-card h5 {
    color: var(--accent-blue);
    margin-bottom: 0.75rem;
}

.faq-card p {
    font-size: 0.9rem;
    color: #666;
}

/* Banner Section */
.banner-section {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem 0;
    border-radius: 12px;
    overflow: hidden;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.banner-overlay {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
}

.banner-overlay h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.banner-overlay p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
}

/* Gallery Items */
.gallery-item {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    transform: scale(1.02);
}

/* Tables */
.table {
    background-color: var(--white);
}

.table thead {
    background-color: var(--light-gray);
    border-bottom: 2px solid var(--border-color);
}

.table thead th {
    color: var(--dark-gray);
    font-weight: 600;
    border: none;
    padding: 1rem;
}

.table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

.table tbody tr:hover {
    background-color: var(--light-gray);
}

.table tbody td {
    padding: 1rem;
    vertical-align: middle;
}

/* Forms */
.form-control {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.75rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 61, 122, 0.1);
}

.form-group label {
    color: var(--dark-gray);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-check-label {
    color: var(--dark-gray);
}

.form-check-label a {
    color: var(--accent-blue);
}

/* Footer */
footer {
    background-color: var(--white);
    color: var(--dark-gray);
    margin-top: 4rem;
}

footer h6 {
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

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

footer a:hover {
    color: var(--accent-blue);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    z-index: 1000;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

.cookie-banner p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-banner .btn {
    flex-shrink: 0;
}

/* Badge */
.badge {
    border-radius: 12px;
    padding: 0.35rem 0.75rem;
    font-weight: 500;
    font-size: 0.8rem;
}

.badge-light {
    background-color: var(--light-gray);
    color: var(--dark-gray);
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .hero-section {
        height: 350px;
        margin-bottom: 2rem;
    }

    .hero-content {
        padding: 2rem;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .banner-section {
        height: 250px;
        margin: 2rem 0;
    }

    .gallery-item {
        height: 200px;
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
        bottom: auto;
        top: 0;
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .status-bar .col-md-3 {
        border-left: none !important;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 1rem;
    }

    .status-bar .col-md-3:last-child {
        border-bottom: none;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.25rem;
    }

    .table {
        font-size: 0.85rem;
    }

    .table thead th,
    .table tbody td {
        padding: 0.75rem 0.5rem;
    }

    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .product-card {
        margin-bottom: 1rem;
    }

    .info-card,
    .faq-card {
        margin-bottom: 1rem;
    }
}
