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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c5282;
}

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

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

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

.btn-nav {
    background: #2c5282;
    color: #fff !important;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
}

.btn-nav:hover {
    background: #1a365d;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

main {
    padding-top: 80px;
}

.hero {
    background: linear-gradient(135deg, #ebf4ff 0%, #c3dafe 100%);
    padding: 5rem 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    color: #1a365d;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto 1rem;
}

.hero-text {
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.btn-primary {
    display: inline-block;
    background: #2c5282;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background: #1a365d;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

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

.section h2 {
    font-size: 2rem;
    color: #1a365d;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section p {
    margin-bottom: 1rem;
    color: #4a5568;
}

.section-alt {
    background: #f7fafc;
    max-width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
}

.section-alt > * {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.feature-list, .audience-list {
    list-style: none;
    padding: 0;
}

.feature-list li, .audience-list li {
    padding: 1rem 1rem 1rem 3rem;
    margin-bottom: 0.5rem;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: relative;
}

.feature-list li::before, .audience-list li::before {
    content: "✓";
    position: absolute;
    left: 1rem;
    color: #2c5282;
    font-weight: bold;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #2c5282;
    color: #fff;
    border-radius: 50%;
    line-height: 40px;
    font-weight: bold;
    margin-bottom: 1rem;
}

.step h3 {
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 0.95rem;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1rem 1.5rem;
    background: #fff;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: #1a365d;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f7fafc;
}

.faq-question::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: 300;
}

.faq-item.active .faq-question::after {
    content: "−";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #f7fafc;
}

.faq-answer p {
    padding: 1rem 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.section-cta {
    background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
    max-width: 100%;
    text-align: center;
    color: #fff;
}

.section-cta h2 {
    color: #fff;
}

.section-cta p {
    color: #e2e8f0;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.section-cta .btn-primary {
    background: #fff;
    color: #2c5282;
}

.section-cta .btn-primary:hover {
    background: #ebf4ff;
}

footer {
    background: #1a365d;
    color: #fff;
    padding: 2rem;
    text-align: center;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact {
    color: #a0aec0;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a365d;
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner p {
    margin: 0;
}

.btn-cookie {
    background: #fff;
    color: #1a365d;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-cookie:hover {
    background: #ebf4ff;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

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

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

    .section {
        padding: 3rem 1.5rem;
    }

    .section h2 {
        font-size: 1.5rem;
    }

    .cookie-banner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
