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

.nav {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.nav-logo {
    font-weight: 600;
    font-size: 1.1rem;
    color: #2c5282;
    text-decoration: none;
}

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

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

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #38a169;
    color: #fff;
}

.btn-primary:hover {
    background: #2f855a;
}

.btn-nav {
    background: #38a169;
    color: #fff;
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-nav:hover {
    background: #2f855a;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
    background: #2c5282;
    color: #fff;
}

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

.hero {
    padding: 140px 20px 80px;
    background: linear-gradient(135deg, #ebf4ff 0%, #e6fffa 100%);
    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 30px;
}

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

.section {
    padding: 70px 20px;
}

.section-alt {
    background: #f7fafc;
}

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

.section p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.skills-list li, .benefits-list li {
    padding: 15px 20px;
    background: #fff;
    margin-bottom: 10px;
    border-radius: 8px;
    border-left: 4px solid #38a169;
    font-size: 1.05rem;
    color: #2d3748;
}

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

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

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #2c5282;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 600;
    margin-bottom: 15px;
}

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

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

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

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

.faq-question {
    width: 100%;
    padding: 18px 20px;
    background: #fff;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    color: #2d3748;
    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.3rem;
    color: #2c5282;
}

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

.faq-answer {
    display: none;
    padding: 0 20px 18px;
    background: #fff;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 0.95rem;
    margin: 0;
}

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

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

.cta-section p {
    color: #e2e8f0;
    margin-bottom: 25px;
}

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

.footer-name {
    font-weight: 500;
    color: #e2e8f0;
    margin-bottom: 8px;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.9rem;
}

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

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

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

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

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        text-align: center;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

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

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

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

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