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

body {
    font-family: 'Roboto', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 18px;
    line-height: 1.75;
    color: #333;
    background: #ffffff;
}

h1 {
    font-size: 46px;
    font-weight: 700;
    color: #1976D2;
    margin-bottom: 24px;
    line-height: 1.3;
}

h2 {
    font-size: 35px;
    font-weight: 600;
    color: #1976D2;
    margin-bottom: 20px;
    margin-top: 40px;
    line-height: 1.4;
}

h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1565C0;
    margin-bottom: 16px;
    margin-top: 30px;
}

p {
    margin-bottom: 20px;
}

a {
    color: #1976D2;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1565C0;
    text-decoration: none;
}

header {
    background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(25, 118, 210, 0.1);
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
}

.logo:hover {
    color: #ffffff;
    opacity: 0.9;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}

nav ul li {
    margin-left: 25px;
    margin-bottom: 0;
}

nav ul li a {
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    transition: opacity 0.3s ease;
}

nav ul li a:hover {
    opacity: 0.8;
    color: #ffffff;
}

main {
    margin-top: 90px;
}

.hero {
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.05) 0%, rgba(21, 101, 192, 0.05) 100%);
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    color: #555;
    max-width: 800px;
    margin: 0 auto 30px;
}

.hero-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin: 40px auto 0;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.section {
    padding: 60px 0;
}

.section-alt {
    background: rgba(25, 118, 210, 0.02);
}

.content-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

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

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

.btn-primary {
    background: #1976D2;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: #1565C0;
    color: #ffffff;
    text-decoration: none;
}

.disclaimer-box {
    background: rgba(25, 118, 210, 0.08);
    border-left: 4px solid #1976D2;
    padding: 24px;
    margin: 40px 0;
    border-radius: 4px;
}

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

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(25, 118, 210, 0.1);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    color: #1976D2;
    margin-top: 0;
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid rgba(25, 118, 210, 0.2);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

footer {
    background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

footer h3 {
    color: #ffffff;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 20px;
}

footer p,
footer a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

footer a:hover {
    color: #ffffff;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 12px;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 3px solid #1976D2;
    padding: 24px;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    display: none;
}

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

.cookie-banner p {
    margin-bottom: 16px;
    font-size: 16px;
}

.cookie-banner button {
    margin-right: 12px;
    margin-bottom: 8px;
}

.myth-box {
    background: rgba(233, 30, 99, 0.05);
    border-left: 4px solid #E91E63;
    padding: 20px;
    margin: 20px 0;
    border-radius: 4px;
}

.fact-box {
    background: rgba(76, 175, 80, 0.05);
    border-left: 4px solid #4CAF50;
    padding: 20px;
    margin: 20px 0;
    border-radius: 4px;
}

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

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 22px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 18px;
    }

    nav ul {
        justify-content: center;
        margin-top: 15px;
    }

    nav ul li {
        margin-left: 15px;
        margin-right: 0;
    }

    .content-image.float-left,
    .content-image.float-right {
        float: none;
        margin: 20px auto;
        display: block;
    }

    .section {
        padding: 40px 0;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 24px;
    }

    .hero h1 {
        font-size: 32px;
    }

    nav ul li {
        margin-left: 10px;
        font-size: 14px;
    }

    .btn-primary {
        padding: 12px 24px;
        font-size: 15px;
    }
}
