/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 1.125rem;
    line-height: 1.7;
    color: #212121;
    background-color: #fff;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Site Header */
.site-header {
    background-color: #fff;
    padding: 2rem 0 1rem;
    text-align: center;
    border-bottom: 2px solid #1863DC;
}

.main-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1863DC;
    margin: 0;
    line-height: 1.3;
}

/* Main Content */
main {
    padding: 3rem 0;
}

article {
    max-width: 650px;
    margin: 0 auto;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1863DC;
}

h3 {
    font-size: 2rem;
    line-height: 1.3;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1863DC;
}

p {
    margin-bottom: 1.5rem;
}

p.intro {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

strong {
    font-weight: 700;
}

/* Links in content */
article a {
    color: #1863DC;
    text-decoration: underline;
}

article a:hover {
    color: #0056A7;
    text-decoration: none;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #FAAA00;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid #FAAA00;
}

.cta-button:hover {
    background-color: #1863DC;
    color: #fff;
    border-color: #1863DC;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-container {
    text-align: center;
    margin: 2.5rem 0;
}

.cta-primary {
    font-size: 1.25rem;
    padding: 1.25rem 3rem;
}

.cta-secondary {
    font-size: 1.25rem;
    padding: 1.25rem 3rem;
    background-color: #1863DC;
    border-color: #1863DC;
}

.cta-secondary:hover {
    background-color: #FAAA00;
    border-color: #FAAA00;
}

.footer-cta {
    text-align: center;
    margin-bottom: 2rem;
}

.cta-footer {
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
}

/* Footer */
footer {
    background-color: #f6f6f6;
    padding: 2rem 0;
    margin-top: 4rem;
    text-align: center;
    font-size: 0.9rem;
    color: #858585;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        font-size: 1rem;
    }

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

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    p.intro {
        font-size: 1.1rem;
    }

    main {
        padding: 2rem 0;
    }

    .cta-button {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .cta-primary {
        font-size: 1.125rem;
        padding: 1.125rem 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .main-title {
        font-size: 1.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .cta-primary {
        font-size: 1rem;
        padding: 1rem 1.75rem;
    }
}
