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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

header {
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #228B22 !important;
    transition: color 0.25s;
}

.navbar-brand:hover {
    color: #1a6b1a !important;
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.25s;
}

.nav-link:hover {
    color: #228B22 !important;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: 56px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 8px;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #228B22;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: #555;
}

.content-section {
    padding: 100px 0;
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #228B22;
    margin-bottom: 1.5rem;
}

.content-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.content-section p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.content-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.content-section li {
    margin-bottom: 0.5rem;
    color: #555;
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.bg-light {
    background-color: #f8f9fa !important;
}

.info-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    height: 100%;
    transition: box-shadow 0.25s;
}

.info-card:hover {
    box-shadow: 0 2px 8px rgba(34, 139, 34, 0.1);
}

.info-card h3 {
    color: #228B22;
}

.table {
    background: #ffffff;
    border-radius: 8px;
}

.table thead th {
    background-color: #228B22;
    color: #ffffff;
    border: none;
    font-weight: 600;
}

.table td {
    color: #555;
}

.comparison-box {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid #228B22;
}

.comparison-box h3 {
    color: #228B22;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.faq-item h3 {
    color: #228B22;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.question-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    height: 100%;
}

.question-card h3 {
    color: #228B22;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.disclaimer-box {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
    border: 2px solid #228B22;
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-box h2 {
    color: #228B22;
    margin-bottom: 1.5rem;
}

.disclaimer-box ul {
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.educational-notice {
    font-weight: 600;
    color: #228B22;
    font-size: 0.95rem;
    margin-top: 1rem;
}

.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.contact-form {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.form-control {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0.75rem;
    transition: border-color 0.25s;
}

.form-control:focus {
    border-color: #228B22;
    box-shadow: 0 0 0 0.2rem rgba(34, 139, 34, 0.15);
    outline: none;
}

.btn-primary {
    background-color: #228B22;
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.25s;
}

.btn-primary:hover {
    background-color: #1a6b1a;
}

footer {
    background: #2c2c2c;
    color: #ffffff;
    padding: 3rem 0 1.5rem;
    margin-top: 100px;
}

footer h4 {
    color: #228B22;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

footer p {
    color: #cccccc;
    font-size: 0.9rem;
}

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

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

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.25s;
}

.footer-links a:hover {
    color: #228B22;
}

.modal-header {
    background-color: #228B22;
    color: #ffffff;
}

.modal-header .close {
    color: #ffffff;
    opacity: 1;
}

.modal-body h3 {
    color: #228B22;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.modal-body h4 {
    color: #333;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem 0;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

.cookie-banner .btn-light {
    background: #228B22;
    color: #ffffff;
    border: none;
    padding: 0.5rem 2rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.25s;
}

.cookie-banner .btn-light:hover {
    background: #1a6b1a;
}

.cookie-banner.hidden {
    display: none;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .content-section {
        padding: 60px 0;
    }
    
    .content-section h2 {
        font-size: 1.6rem;
    }
    
    .hero-content {
        padding: 2rem;
    }
    
    footer {
        margin-top: 60px;
    }
    
    .cookie-banner .text-right {
        text-align: center !important;
        margin-top: 1rem;
    }
}
