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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #111827;
    background-color: #F9FAFB;
}

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

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

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

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2563EB;
}

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

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

.nav a:hover {
    color: #2563EB;
}

.hero {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(135deg, #EBF4FF 0%, #E0F2F1 100%);
}

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

.hero-subheading {
    font-size: 1.125rem;
    color: #4B5563;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.btn-primary {
    background-color: #2563EB;
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background-color: #1D4ED8;
}

.link-secondary {
    color: #2563EB;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.link-secondary:hover {
    color: #1D4ED8;
}

.section {
    padding: 4rem 0;
}

.section-alt {
    background-color: #ffffff;
}

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

.content-block {
    max-width: 800px;
    margin: 0 auto;
}

.content-block p {
    margin-bottom: 1.5rem;
    color: #4B5563;
    font-size: 1.0625rem;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.content-card {
    background-color: #F9FAFB;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #E5E7EB;
}

.content-card h3 {
    color: #2563EB;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.content-card p {
    color: #4B5563;
    line-height: 1.6;
}

.benefit-list {
    list-style: none;
    margin: 2rem 0;
}

.benefit-list li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    color: #4B5563;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: 700;
    font-size: 1.25rem;
}

.disclaimer-text {
    color: #6B7280;
    font-size: 0.9375rem;
    font-style: italic;
    margin-top: 1.5rem;
}

.topic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.topic-card {
    background-color: #F9FAFB;
    padding: 2rem;
    border-radius: 0.5rem;
    border-left: 4px solid #10B981;
}

.topic-card h3 {
    color: #111827;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.topic-card p {
    color: #4B5563;
    line-height: 1.6;
}

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

.faq-item {
    background-color: #ffffff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #E5E7EB;
}

.faq-item h3 {
    color: #2563EB;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.faq-item p {
    color: #4B5563;
    line-height: 1.6;
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto 0;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid #E5E7EB;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #374151;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #D1D5DB;
    border-radius: 0.375rem;
    font-size: 1rem;
    color: #111827;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    width: 1.125rem;
    height: 1.125rem;
    cursor: pointer;
}

.checkbox-label span {
    color: #4B5563;
    font-size: 0.9375rem;
}

.checkbox-label a {
    color: #2563EB;
    text-decoration: underline;
}

.footer {
    background-color: #111827;
    color: #D1D5DB;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-brand {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
}

.footer-nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

.footer-disclaimer p {
    color: #9CA3AF;
    font-size: 0.875rem;
    max-width: 800px;
    margin: 0 auto;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1F2937;
    color: #ffffff;
    padding: 1.25rem 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9375rem;
    flex: 1;
    min-width: 250px;
}

.btn-cookie {
    background-color: #10B981;
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: 0.375rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.btn-cookie:hover {
    background-color: #059669;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .nav {
        gap: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}