/* Reset and base styles */
* {
    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.8;
    color: #2c3e50;
    background-color: #f8f9fa;
    font-size: 18px; /* Larger base font for readability */
}

/* Container */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 700;
}

.tagline {
    font-size: 1.3em;
    opacity: 0.95;
    font-weight: 300;
}

/* Main content */
main {
    padding: 40px 20px;
}

section {
    margin-bottom: 60px;
}

h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 600;
}

h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: #34495e;
    font-weight: 600;
}

/* Hero section */
.hero {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.intro {
    font-size: 1.2em;
    margin-bottom: 20px;
    line-height: 1.9;
}

/* Benefits grid */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #5a6c7d;
    font-size: 1.05em;
}

/* Reassurance section */
.reassurance {
    background: #e8f4f8;
    padding: 40px;
    border-radius: 12px;
    border-left: 5px solid #667eea;
}

.reassurance p {
    font-size: 1.15em;
    margin-bottom: 15px;
}

.reassurance strong {
    color: #667eea;
    font-weight: 600;
}

/* CTA section */
.cta {
    text-align: center;
    background: white;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #5a6c7d;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 18px 45px;
    font-size: 1.3em;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.btn-secondary {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 18px 45px;
    font-size: 1.3em;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.2s;
    border: 3px solid #667eea;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.cta-note {
    margin-top: 20px;
    font-size: 1em;
    color: #7f8c8d;
    font-style: italic;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 30px 20px;
    text-align: center;
    margin-top: 60px;
}

footer a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

footer a:hover {
    text-decoration: underline;
}

.footer-note {
    margin-top: 10px;
    font-size: 0.9em;
    opacity: 0.7;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    header h1 {
        font-size: 2em;
    }

    .tagline {
        font-size: 1.1em;
    }

    h2 {
        font-size: 1.6em;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .hero,
    .reassurance,
    .cta {
        padding: 25px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        padding: 15px 35px;
        font-size: 1.2em;
        width: 100%;
    }
}

/* Print styles */
@media print {
    header,
    footer,
    .cta {
        display: none;
    }
}
