@import url('https://fonts.googleapis.com/css2?family=Cabin:wght@400;500;600;700&display=swap');

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

body {
    font-family: 'Cabin', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: #2c3e50;
    background: linear-gradient(to bottom, #ffffff 0%, #f0f4f0 100%);
}

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

header {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 12px rgba(27, 94, 32, 0.09);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar {
    padding: 15px 0;
}

.navbar-brand {
    font-size: 26px;
    font-weight: 700;
    color: #1B5E20;
    transition: all 0.4s ease;
}

.navbar-brand:hover {
    color: #2e7d32;
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: #2c3e50;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 16px;
    margin: 0 4px;
    transition: all 0.4s ease;
    border-bottom: 2px solid transparent;
}

.navbar-nav .nav-link:hover {
    color: #1B5E20;
    border-bottom: 2px solid #1B5E20;
}

.section {
    padding: 80px 0;
    position: relative;
}

.section-alt {
    background: rgba(27, 94, 32, 0.03);
}

h1 {
    font-size: 52px;
    font-weight: 700;
    color: #1B5E20;
    margin-bottom: 24px;
    line-height: 1.2;
}

h2 {
    font-size: 38px;
    font-weight: 600;
    color: #1B5E20;
    margin-bottom: 20px;
    line-height: 1.3;
}

h3 {
    font-size: 28px;
    font-weight: 600;
    color: #2e7d32;
    margin-bottom: 16px;
}

p {
    margin-bottom: 16px;
}

.hero-section {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(27,94,32,0.08) 100%);
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-intro {
    font-size: 20px;
    color: #546e7a;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.content-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(27, 94, 32, 0.15);
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.content-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(27, 94, 32, 0.2);
}

.image-left {
    float: left;
    margin-right: 40px;
    margin-bottom: 20px;
}

.image-right {
    float: right;
    margin-left: 40px;
    margin-bottom: 20px;
}

.btn-path {
    background: #1B5E20;
    color: #ffffff;
    padding: 14px 32px;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(27, 94, 32, 0.2);
    text-decoration: none;
    display: inline-block;
}

.btn-path:hover {
    background: #2e7d32;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(27, 94, 32, 0.3);
    text-decoration: none;
}

.faq-item {
    background: #ffffff;
    padding: 24px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid #1B5E20;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(27, 94, 32, 0.12);
    transform: translateX(5px);
}

.faq-question {
    font-size: 19px;
    font-weight: 600;
    color: #1B5E20;
    margin-bottom: 12px;
}

.faq-answer {
    color: #546e7a;
    line-height: 1.7;
}

.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(27, 94, 32, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-control {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    transition: all 0.4s ease;
}

.form-control:focus {
    border-color: #1B5E20;
    box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.1);
    outline: none;
}

.disclaimer-box {
    background: rgba(27, 94, 32, 0.05);
    border-left: 4px solid #1B5E20;
    padding: 24px;
    margin: 40px 0;
    border-radius: 8px;
}

.disclaimer-box h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.disclaimer-box p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.7;
}

footer {
    background: linear-gradient(to top, #1B5E20 0%, #2e7d32 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    margin-bottom: 40px;
}

.footer-brand {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    opacity: 0.9;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-link {
    color: #ffffff;
    text-decoration: underline;
    font-size: 15px;
    transition: all 0.4s ease;
    cursor: pointer;
    opacity: 0.9;
}

.footer-link:hover {
    opacity: 1;
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
    padding: 24px;
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    margin-right: 24px;
    font-size: 15px;
    color: #546e7a;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.btn-cookie {
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.4s ease;
    cursor: pointer;
    border: none;
}

.btn-accept {
    background: #1B5E20;
    color: #ffffff;
}

.btn-accept:hover {
    background: #2e7d32;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 20000;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: #546e7a;
    cursor: pointer;
    line-height: 1;
    transition: all 0.4s ease;
}

.modal-close:hover {
    color: #1B5E20;
}

.thank-you-modal .modal-content {
    text-align: center;
    max-width: 500px;
}

.thank-you-icon {
    font-size: 64px;
    color: #1B5E20;
    margin-bottom: 20px;
}

.educational-notice {
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid #ffc107;
    padding: 20px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: center;
}

.educational-notice p {
    font-size: 15px;
    font-weight: 600;
    color: #f57f17;
    margin: 0;
}

@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    h3 {
        font-size: 22px;
    }
    
    .hero-section {
        padding: 140px 0 60px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .content-image {
        float: none;
        margin: 0 auto 20px;
        display: block;
        max-width: 100%;
    }
    
    .image-left,
    .image-right {
        float: none;
        margin: 0 auto 20px;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-text {
        margin-right: 0;
        margin-bottom: 16px;
    }
    
    .contact-form {
        padding: 24px;
    }
}
