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

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: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.logo {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0d9488;
}

nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

nav a {
    color: #4b5563;
    text-decoration: none;
    font-size: 0.875rem;
}

nav a:hover {
    color: #0d9488;
}

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

.hero h1 {
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 16px;
}

.hero p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    background: #0d9488;
    color: #fff;
    padding: 12px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background: #0f766e;
}

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

.section {
    padding: 64px 0;
}

.section-alt {
    background: #f8fafc;
}

.section h2 {
    font-size: 1.75rem;
    color: #0f172a;
    margin-bottom: 24px;
}

.section p {
    color: #4b5563;
    margin-bottom: 16px;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.program-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 24px;
}

.program-card h3 {
    font-size: 1.125rem;
    color: #0d9488;
    margin-bottom: 8px;
}

.program-card p {
    font-size: 0.875rem;
    margin-bottom: 0;
}

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

.step {
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #0d9488;
    color: #fff;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.step h3 {
    font-size: 1rem;
    color: #0f172a;
    margin-bottom: 8px;
}

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

.faq-list {
    margin-top: 32px;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 24px 0;
}

.faq-item:first-child {
    padding-top: 0;
}

.faq-item h3 {
    font-size: 1rem;
    color: #0f172a;
    margin-bottom: 8px;
}

.faq-item p {
    font-size: 0.875rem;
    margin-bottom: 0;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    color: #374151;
    margin-bottom: 6px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin-top: 4px;
}

.checkbox-group label {
    font-size: 0.8125rem;
    margin-bottom: 0;
}

.checkbox-group a {
    color: #0d9488;
}

footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 40px 0;
    text-align: center;
}

footer p {
    margin-bottom: 16px;
}

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

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    margin: 0 12px;
    font-size: 0.875rem;
}

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

.disclaimer {
    font-size: 0.75rem;
    color: #64748b;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e293b;
    color: #e2e8f0;
    padding: 16px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    z-index: 1000;
}

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

.cookie-banner a {
    color: #5eead4;
}

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

@media (max-width: 600px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    nav {
        gap: 12px;
    }

    .header-inner {
        justify-content: center;
        text-align: center;
    }
}
