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

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

body {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    background: linear-gradient(to bottom, #ffffff 0%, #f0f8f0 100%);
    overflow-x: hidden;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.45s ease-in-out;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: all 0.45s ease-in-out;
}

.logo img {
    width: 40px;
    height: 40px;
    margin-right: 12px;
    border-radius: 10px;
}

.logo span {
    font-size: 22px;
    font-weight: 700;
    color: #A5D6A7;
}

.nav-menu {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: #555;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.45s ease-in-out;
    padding: 8px 15px;
    border-radius: 10px;
}

.nav-menu a:hover {
    color: #A5D6A7;
    background: rgba(165, 214, 167, 0.1);
}

.main-content {
    margin-top: 80px;
}

.section {
    padding: 80px 36px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(165, 214, 167, 0.15)), url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

h1 {
    font-size: 52px;
    font-weight: 700;
    color: #2d5a2e;
    margin-bottom: 25px;
    line-height: 1.3;
}

h2 {
    font-size: 38px;
    font-weight: 700;
    color: #2d5a2e;
    margin-bottom: 25px;
    line-height: 1.3;
}

h3 {
    font-size: 28px;
    font-weight: 600;
    color: #3d6a3e;
    margin-bottom: 20px;
    line-height: 1.4;
}

p {
    margin-bottom: 20px;
    color: #555;
}

.content-row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 36px;
    align-items: center;
    margin-bottom: 40px;
}

.content-text {
    grid-column: span 7;
}

.content-image {
    grid-column: span 5;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.45s ease-in-out;
}

.content-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 25px rgba(165, 214, 167, 0.3);
}

.content-row.reverse .content-text {
    grid-column: 8 / span 5;
}

.content-row.reverse .content-image {
    grid-column: 1 / span 7;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, #A5D6A7, #8bc98e);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.45s ease-in-out;
    box-shadow: 0 4px 15px rgba(165, 214, 167, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(165, 214, 167, 0.5);
    background: linear-gradient(135deg, #8bc98e, #A5D6A7);
}

.faq-section {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    padding: 40px;
}

.faq-item {
    margin-bottom: 30px;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.45s ease-in-out;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(165, 214, 167, 0.2);
}

.faq-question {
    font-weight: 700;
    font-size: 19px;
    color: #2d5a2e;
    margin-bottom: 12px;
}

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

.contact-form {
    max-width: 600px;
    margin: 40px auto;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2d5a2e;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    transition: all 0.45s ease-in-out;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #A5D6A7;
    box-shadow: 0 0 0 3px rgba(165, 214, 167, 0.1);
}

.info-box {
    background: rgba(165, 214, 167, 0.1);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #A5D6A7;
    margin: 30px 0;
}

.info-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.footer {
    background: linear-gradient(135deg, #2d5a2e, #3d6a3e);
    color: white;
    padding: 50px 36px 30px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #A5D6A7;
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: all 0.45s ease-in-out;
}

.footer-section a:hover {
    color: #A5D6A7;
    padding-left: 5px;
}

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

.disclaimer-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #A5D6A7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(45, 90, 46, 0.98);
    color: white;
    padding: 25px 36px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-button {
    padding: 12px 30px;
    background: #A5D6A7;
    color: #2d5a2e;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.45s ease-in-out;
    font-size: 15px;
}

.cookie-button:hover {
    background: #8bc98e;
    transform: translateY(-2px);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1002;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    overflow-y: auto;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    font-weight: 700;
    color: #999;
    cursor: pointer;
    transition: all 0.45s ease-in-out;
    line-height: 1;
}

.modal-close:hover {
    color: #333;
}

.modal-content h2 {
    color: #2d5a2e;
    margin-bottom: 25px;
}

.modal-content h3 {
    color: #3d6a3e;
    margin-top: 25px;
    margin-bottom: 15px;
}

.modal-content p {
    margin-bottom: 15px;
    color: #555;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .nav-menu a {
        font-size: 14px;
        padding: 6px 12px;
    }

    .section {
        padding: 50px 20px;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 22px;
    }

    .content-row,
    .content-row.reverse {
        grid-template-columns: 1fr;
    }

    .content-text,
    .content-image,
    .content-row.reverse .content-text,
    .content-row.reverse .content-image {
        grid-column: 1;
    }

    .hero-content {
        padding: 30px 20px;
    }

    .cookie-content {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .modal-content {
        padding: 30px 20px;
    }
}
