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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #1f2937;
}

.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #111827;
}

.hero-amount {
    font-size: 1.5rem;
    font-weight: 600;
    color: #059669;
    margin-bottom: 0.5rem;
}

.hero-limited {
    font-size: 1.125rem;
    color: #dc2626;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: #1f2937;
    color: #ffffff;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.cta-button:hover {
    background: #111827;
}

.directory {
    padding: 4rem 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

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

.course-list li {
    padding: 1rem 1.5rem;
    margin-bottom: 0.75rem;
    background: #f9fafb;
    border-left: 4px solid #1f2937;
    border-radius: 0.25rem;
    font-weight: 500;
}

.disclaimer {
    padding: 3rem 0;
    background: #fef3c7;
}

.disclaimer-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 0.5rem;
    border: 2px solid #fbbf24;
}

.disclaimer-box p {
    color: #78350f;
    line-height: 1.7;
}

.contact {
    padding: 4rem 0;
    background: #f9fafb;
}

.lead-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1f2937;
}

.checkbox-group {
    margin-top: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: auto;
}

.checkbox-label span {
    font-size: 0.875rem;
    color: #4b5563;
}

.checkbox-label a {
    color: #1f2937;
    text-decoration: underline;
}

.submit-button {
    width: 100%;
    background: #1f2937;
    color: #ffffff;
    padding: 0.875rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.submit-button:hover {
    background: #111827;
}

.about {
    padding: 4rem 0;
}

.about-text {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.125rem;
    color: #4b5563;
}

.footer {
    background: #1f2937;
    color: #ffffff;
    padding: 2rem 0;
    text-align: center;
}

.footer-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: #ffffff;
    padding: 1.25rem;
    z-index: 100;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.875rem;
}

.cookie-content a {
    color: #93c5fd;
    text-decoration: underline;
}

.cookie-btn {
    background: #ffffff;
    color: #1f2937;
    padding: 0.625rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.thank-you {
    padding: 6rem 0;
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #059669;
}

.thank-you-content p {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.back-button {
    display: inline-block;
    background: #1f2937;
    color: #ffffff;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.back-button:hover {
    background: #111827;
}

.legal-content {
    padding: 4rem 0;
}

.legal-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #111827;
}

.legal-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.legal-content p,
.legal-content ul {
    margin-bottom: 1rem;
    color: #4b5563;
    line-height: 1.8;
}

.legal-content ul {
    margin-left: 2rem;
    list-style: disc;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.update-date {
    margin-top: 3rem;
    font-style: italic;
    color: #6b7280;
}

@media (max-width: 768px) {
    .nav {
        gap: 1rem;
        font-size: 0.875rem;
    }

    .hero-title {
        font-size: 1.875rem;
    }

    .hero-amount {
        font-size: 1.25rem;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-btn {
        width: 100%;
    }

    .legal-content h2 {
        font-size: 2rem;
    }

    .legal-content h3 {
        font-size: 1.25rem;
    }
}
