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

body {
    font-family: 'Nunito', 'Helvetica', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(to bottom, #ffffff 0%, #e3f2fd 100%);
}

h1 {
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #01579B;
}

h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #01579B;
}

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

.header {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 8px rgba(1, 87, 155, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.35s ease;
}

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

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #01579B;
    text-decoration: none;
    transition: all 0.35s ease;
}

.logo:hover {
    color: #0277BD;
    text-decoration: none;
}

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

.nav-menu a {
    color: #01579B;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.35s ease;
    font-size: 16px;
}

.nav-menu a:hover {
    color: #0277BD;
}

.hero-section {
    background: linear-gradient(135deg, rgba(1, 87, 155, 0.15) 0%, rgba(227, 242, 253, 0.3) 100%);
    padding: 140px 0 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    margin: 30px auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(1, 87, 155, 0.1);
}

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

.content-section:nth-child(even) {
    background: rgba(227, 242, 253, 0.2);
}

.section-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: start;
}

.section-text {
    line-height: 1.7;
}

.section-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(1, 87, 155, 0.1);
    transition: all 0.35s ease;
}

.section-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(1, 87, 155, 0.15);
}

.image-left .section-content {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.image-left .section-image {
    order: -1;
}

.image-right .section-content {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.faq-item {
    background: white;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(1, 87, 155, 0.08);
    transition: all 0.35s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 18px rgba(1, 87, 155, 0.12);
}

.faq-question {
    font-weight: 700;
    color: #01579B;
    margin-bottom: 10px;
    font-size: 19px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(1, 87, 155, 0.1);
    max-width: 600px;
    margin: 40px auto;
}

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

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

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.35s ease;
    font-family: 'Nunito', sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: #01579B;
    box-shadow: 0 0 0 3px rgba(1, 87, 155, 0.1);
}

.btn-primary {
    background: #01579B;
    color: white;
    padding: 14px 40px;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s ease;
    width: 100%;
}

.btn-primary:hover {
    background: #0277BD;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(1, 87, 155, 0.2);
}

.footer {
    background: linear-gradient(135deg, #01579B 0%, #0277BD 100%);
    color: white;
    padding: 60px 0 30px 0;
    margin-top: 80px;
}

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

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

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

.footer-section a:hover {
    color: white;
    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(1, 87, 155, 0.05);
    border-left: 4px solid #01579B;
    padding: 25px;
    margin: 40px 0;
    border-radius: 8px;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(1, 87, 155, 0.98);
    color: white;
    padding: 25px 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    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: 30px;
}

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

.btn-accept {
    background: white;
    color: #01579B;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s ease;
}

.btn-accept:hover {
    background: #e3f2fd;
}

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

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

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    margin: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: 700;
    color: #01579B;
    cursor: pointer;
    background: none;
    border: none;
    transition: all 0.35s ease;
}

.modal-close:hover {
    color: #0277BD;
}

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

.thank-you-modal h2 {
    color: #01579B;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 22px;
    }

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

    .image-left .section-content,
    .image-right .section-content {
        grid-template-columns: 1fr;
    }

    .image-left .section-image {
        order: 0;
    }

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

    .hero-section {
        padding: 100px 0 60px 0;
    }

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

.educational-notice {
    background: #fff3cd;
    border: 2px solid #ffc107;
    padding: 20px;
    margin: 30px 0;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: #856404;
}
