* {
    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: #fff;
}

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

.top-bar {
    background: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.9rem;
}

.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

.nav-menu a:hover {
    color: #2c3e50;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background: #f4c430;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}

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

.btn-nav {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-primary {
    font-size: 1.1rem;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.2rem;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.85rem;
}

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

.hero h1 {
    font-size: 2.4rem;
    color: #2c3e50;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.3;
}

.hero-sub {
    font-size: 1.15rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto 30px;
}

.hero-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #777;
}

.section {
    padding: 70px 20px;
}

.section-alt {
    background: #f8f9fa;
}

.section h2 {
    font-size: 1.9rem;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

.list-styled {
    list-style: none;
    max-width: 600px;
    margin: 0 auto 30px;
}

.list-styled li {
    padding: 10px 0 10px 30px;
    position: relative;
    border-bottom: 1px solid #eee;
}

.list-styled li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #f4c430;
    font-size: 1.5rem;
    line-height: 1;
}

.section p {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: #555;
}

.section-note {
    margin-top: 30px;
    font-style: italic;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.card h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 12px;
}

.card p {
    text-align: left;
    font-size: 0.95rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 20px;
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #f4c430;
    color: #1a1a1a;
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 15px;
}

.step h3 {
    font-size: 1.15rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

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

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

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-question {
    width: 100%;
    padding: 20px 0;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:after {
    content: "+";
    font-size: 1.5rem;
    color: #f4c430;
}

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

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

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

.faq-answer p {
    padding-bottom: 20px;
    text-align: left;
}

.section-cta {
    background: #2c3e50;
    color: #fff;
    padding: 70px 20px;
    text-align: center;
}

.section-cta h2 {
    color: #fff;
    margin-bottom: 15px;
}

.section-cta p {
    color: #ccc;
    margin-bottom: 30px;
}

.footer {
    background: #1a1a1a;
    color: #999;
    padding: 40px 20px;
    text-align: center;
}

.footer-name {
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    font-size: 0.85rem;
    color: #666;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 2000;
    flex-wrap: wrap;
}

.cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
}

.cookie-banner.hidden {
    display: none;
}

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

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

    .nav-toggle {
        display: flex;
    }

    .btn-nav {
        display: none;
    }

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

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

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

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