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

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

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

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

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

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

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

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

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

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

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

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

.hero h1 {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-note {
    font-size: 0.95rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto 30px;
    font-style: italic;
}

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

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

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.section {
    padding: 80px 20px;
}

.section-alt {
    background: #f7fafc;
}

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

.section p {
    margin-bottom: 15px;
    color: #4a5568;
}

.feature-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
}

.feature-list li {
    padding: 15px 0 15px 40px;
    position: relative;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #38a169;
    font-weight: bold;
    font-size: 1.2rem;
}

.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

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

.column h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.column-yes h3 {
    color: #276749;
}

.column-no h3 {
    color: #9b2c2c;
}

.column ul {
    list-style: none;
}

.column ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #4a5568;
}

.column-yes ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #38a169;
}

.column-no ul li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #e53e3e;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 25px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.step-number {
    display: inline-flex;
    width: 50px;
    height: 50px;
    background: #2c5282;
    color: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.step h3 {
    font-size: 1.1rem;
    color: #1a365d;
    margin-bottom: 10px;
}

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

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

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

.faq-question {
    width: 100%;
    padding: 18px 50px 18px 20px;
    background: #fff;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    color: #2d3748;
    cursor: pointer;
    position: relative;
    transition: background 0.3s;
}

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

.faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #2c5282;
    transition: transform 0.3s;
}

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

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

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

.faq-answer p {
    padding: 0 20px 20px;
    color: #4a5568;
}

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

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

.section-cta p {
    color: #cbd5e0;
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

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

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

footer {
    background: #1a202c;
    color: #a0aec0;
    padding: 40px 20px;
    text-align: center;
}

.footer-logo {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.footer-nav {
    margin-bottom: 15px;
}

.footer-nav a {
    color: #a0aec0;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.footer-email {
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a202c;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    color: #e2e8f0;
    font-size: 0.9rem;
    margin: 0;
    flex: 1;
}

.btn-cookie {
    background: #2c5282;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background 0.3s;
}

.btn-cookie:hover {
    background: #3182ce;
}

@media (max-width: 900px) {
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .two-columns {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}
