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

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

body {
    font-family: 'Quicksand', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: #2c3e50;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8f0 100%);
}

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

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.6s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #81C784;
    text-decoration: none;
    transition: all 0.6s ease;
}

.logo:hover {
    color: #66BB6A;
    text-decoration: none;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
}

nav ul li a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.6s ease;
    padding: 8px 15px;
    border-radius: 12px;
}

nav ul li a:hover {
    color: #81C784;
    background: rgba(129, 199, 132, 0.1);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: #81C784;
    cursor: pointer;
}

section {
    padding: 80px 0;
    margin-top: 70px;
}

section:first-of-type {
    margin-top: 0;
}

h1 {
    font-size: 50px;
    font-weight: 700;
    color: #81C784;
    margin-bottom: 25px;
    line-height: 1.3;
}

h2 {
    font-size: 42px;
    font-weight: 600;
    color: #81C784;
    margin-bottom: 20px;
    line-height: 1.4;
}

h3 {
    font-size: 28px;
    font-weight: 600;
    color: #66BB6A;
    margin-bottom: 15px;
}

p {
    margin-bottom: 18px;
    color: #546e7a;
}

.hero {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #e8f5e9 100%);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero img {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 12px;
    margin: 30px auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.content-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.6s ease;
}

.content-section:hover {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
}

.content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.content-with-image.reverse {
    direction: rtl;
}

.content-with-image.reverse > * {
    direction: ltr;
}

.content-with-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.single-column img {
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    float: right;
    margin: 0 0 20px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.faq-item {
    background: #f9fffe;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 12px;
    border-left: 4px solid #81C784;
    transition: all 0.6s ease;
}

.faq-item:hover {
    background: #e8f5e9;
}

.faq-item h3 {
    margin-bottom: 12px;
}

.cta-section {
    text-align: center;
    background: linear-gradient(135deg, #e8f5e9 0%, #ffffff 100%);
    padding: 60px;
    border-radius: 12px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #81C784;
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.6s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #66BB6A;
    box-shadow: 0 6px 25px rgba(129, 199, 132, 0.3);
    color: #ffffff;
    text-decoration: none;
}

.contact-form {
    max-width: 600px;
    margin: 40px auto 0;
}

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

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

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #81C784;
    box-shadow: 0 0 15px rgba(129, 199, 132, 0.2);
}

.contact-info {
    background: #f9fffe;
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
}

.contact-info h3 {
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
}

footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 50px 0 30px;
    margin-top: 80px;
}

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

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

.footer-section p,
.footer-section a {
    color: #b0bec5;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: all 0.6s ease;
}

.footer-section a:hover {
    color: #81C784;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #455a64;
    color: #b0bec5;
}

.disclaimer-box {
    background: #fff8e1;
    border-left: 4px solid #ffb74d;
    padding: 25px;
    margin: 30px 0;
    border-radius: 12px;
}

.disclaimer-box h3 {
    color: #f57c00;
    margin-bottom: 15px;
}

.educational-note {
    background: #e3f2fd;
    border-left: 4px solid #42a5f5;
    padding: 20px;
    margin: 30px 0;
    border-radius: 12px;
    font-style: italic;
}

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

.modal-content {
    background-color: #ffffff;
    margin: 50px auto;
    padding: 40px;
    border-radius: 12px;
    max-width: 800px;
    position: relative;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: all 0.6s ease;
}

.modal-close:hover {
    color: #81C784;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 25px;
    z-index: 1500;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

.cookie-banner p {
    margin: 0;
    color: #ffffff;
}

.cookie-banner button {
    background: #81C784;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 12px;
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.6s ease;
    white-space: nowrap;
}

.cookie-banner button:hover {
    background: #66BB6A;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .content-with-image {
        grid-template-columns: 1fr;
    }

    .single-column img {
        float: none;
        display: block;
        margin: 20px auto;
        max-width: 100%;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    nav {
        display: none;
    }

    nav.active {
        display: block;
        position: absolute;
        top: 60px;
        right: 0;
        background: #ffffff;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border-radius: 12px;
        padding: 20px;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 32px;
    }

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

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

    section {
        padding: 50px 0;
    }

    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .modal-content {
        margin: 20px;
        padding: 25px;
    }
}
