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

body {
    font-family: system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #fafafa;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 8px rgba(0, 105, 148, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #006994;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #006994;
}

.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 105, 148, 0.7), rgba(0, 105, 148, 0.3));
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-alt {
    background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%);
}

h2 {
    font-size: 2.5rem;
    color: #006994;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.8rem;
    color: #006994;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.content-wrapper {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.content-text {
    flex: 1;
}

.content-image {
    flex: 0 0 400px;
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 105, 148, 0.15);
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
}

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

p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.info-box {
    background: linear-gradient(135deg, rgba(0, 105, 148, 0.05), rgba(0, 105, 148, 0.02));
    border-left: 4px solid #006994;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 7px;
}

.disclaimer-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 7px;
}

.disclaimer-box h3 {
    color: #856404;
    margin-top: 0;
}

.disclaimer-box p {
    color: #856404;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 7px;
    box-shadow: 0 2px 8px rgba(0, 105, 148, 0.08);
}

.faq-item h3 {
    color: #006994;
    margin-top: 0;
    font-size: 1.3rem;
}

.btn-primary {
    display: inline-block;
    background: #006994;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 7px;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(0, 105, 148, 0.2);
    border: none;
    font-size: 1rem;
    cursor: pointer;
}

.btn-primary:hover {
    background: #005275;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 105, 148, 0.3);
}

.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(0, 105, 148, 0.05), rgba(0, 105, 148, 0.1));
}

.contact-section {
    background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h3 {
    color: #006994;
    margin-top: 0;
}

.contact-info p {
    margin: 0.5rem 0;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 7px;
    box-shadow: 0 3px 15px rgba(0, 105, 148, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 7px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #006994;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer h4 {
    color: #006994;
    margin-bottom: 1rem;
}

.footer p,
.footer a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.8;
}

.footer a:hover {
    color: #006994;
}

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

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

.footer-links a {
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #999;
}

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

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 7px;
    width: 90%;
    max-width: 700px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: 300;
    color: #999;
    cursor: pointer;
    line-height: 1;
}

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

.modal h2 {
    color: #006994;
    margin-bottom: 1.5rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem 2rem;
    z-index: 1500;
    display: none;
}

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

.cookie-text {
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.btn-cookie-accept {
    background: #006994;
    color: white;
}

.btn-cookie-accept:hover {
    background: #005275;
}

.educational-notice {
    background: linear-gradient(135deg, rgba(0, 105, 148, 0.08), rgba(0, 105, 148, 0.03));
    border: 2px solid #006994;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 7px;
    text-align: center;
    font-weight: 500;
    color: #006994;
}

.success-message {
    display: none;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 1rem;
    border-radius: 7px;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.4rem;
    }

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

    .content-image {
        flex: 1;
        width: 100%;
    }

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

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

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

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

    .section {
        padding: 3rem 1.5rem;
    }
}
