@import url('https://fonts.googleapis.com/css2?family=Faustina:wght@300;400;700&family=Open+Sans:wght@400;600;800&family=Roboto:wght@400;700&display=swap');

:root {
    --ll-color-primary: #a51c1c;
    --ll-color-secondary: #8b1818;
    --ll-color-hover: #1f33ea;
    --ll-color-background: #ffffff;
    --ll-color-text-primary: #1a1a1a;
    --ll-color-text-secondary: #333333;
    --ll-font-heading: Georgia, "Times New Roman", serif;
    --ll-font-body: Georgia, "Times New Roman", serif;
}

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

body {
    font-family: var(--ll-font-body);
    background-color: var(--ll-color-background);
    color: var(--ll-color-text-primary);
    line-height: 1.5;
}

/* Layout */
.ira-section {
    max-width: 880px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
.site-header {
    text-align: center;
    padding: 10px 0;
}

.header-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px;
}

.logo-icon {
    font-size: 24px;
    margin-right: 8px;
}

.logo-text {
    font-family: "Open Sans", sans-serif;
    font-weight: 800;
    font-size: 14px;
    color: #3d5a80;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding-top: 0;
    padding-bottom: 0;
}

.hero-title {
    font-family: "Open Sans", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--ll-color-text-primary);
    line-height: 1.2;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-family: "Open Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--ll-color-text-primary);
    margin-bottom: 20px;
}

/* Intro Section */
.intro-section {
    padding-top: 0;
}

.intro-section .ira-section {
    padding-bottom: 30px;
}

/* Images */
.ira-image-wrapper {
    width: 100%;
    margin-bottom: 20px;
}

.ira-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Headings */
.ira-heading {
    font-family: Roboto, sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--ll-color-text-primary);
    line-height: 1.3;
    margin-bottom: 20px;
}

/* Body Text */
.ira-description {
    font-family: "Open Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--ll-color-text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.ira-bold {
    font-weight: 700;
    color: var(--ll-color-text-primary);
}

.ira-bold-note {
    font-weight: 700;
    color: #000;
}

.ira-bold-note strong {
    font-family: "Open Sans", sans-serif;
}

/* Lists */
.ira-list {
    font-family: "Open Sans", sans-serif;
    font-size: 20px;
    color: var(--ll-color-text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    padding-left: 20px;
    list-style: disc;
}

.ira-steps {
    list-style: none;
    padding-left: 0;
}

.ira-steps li::before {
    content: "● ";
}

.ira-check-list {
    list-style: none;
    padding-left: 0;
}

/* CTA Buttons */
.ira-cta-wrapper {
    width: 100%;
    margin-bottom: 10px;
}

.ira-cta-btn {
    display: block;
    width: 100%;
    background-color: var(--ll-color-primary);
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    font-family: "Open Sans", sans-serif;
    font-size: 20px;
    font-weight: 600;
    padding: 18px 24px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.ira-cta-btn:hover {
    background-color: var(--ll-color-hover);
}

/* Offer Sections */
.offer-section {
    padding-top: 18px;
}

.offer-section .ira-section {
    padding-bottom: 30px;
}

/* Closing Section */
.closing-section {
    padding-top: 50px;
    margin-bottom: 50px;
}

.closing-heading {
    font-family: Roboto, sans-serif;
    margin-bottom: 20px;
}

.recap-list {
    font-family: "Open Sans", sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--ll-color-text-primary);
    line-height: 2;
    padding-left: 24px;
}

.recap-list a {
    color: #000;
    text-decoration: none;
}

.recap-list a:hover {
    text-decoration: underline;
}

/* Footer */
.site-footer {
    padding-top: 50px;
    padding-bottom: 40px;
}

.site-footer .ira-section {
    max-width: 880px;
}

.footer-copyright {
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

.footer-disclaimer {
    font-family: "Open Sans", sans-serif;
    font-size: 10px;
    color: #999;
    line-height: 1.4;
    margin-bottom: 15px;
    opacity: 0.7;
}

.footer-advertorial {
    font-family: "Open Sans", sans-serif;
    font-size: 10px;
    color: #999;
    line-height: 1.4;
    margin-bottom: 15px;
    opacity: 0.7;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    color: #333;
    text-decoration: underline;
    margin-right: 16px;
}

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

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 30px;
    border-radius: 8px;
    max-width: 700px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.modal-content h2 {
    font-family: Roboto, sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--ll-color-text-primary);
    margin-bottom: 20px;
}

.modal-content h3 {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--ll-color-text-primary);
    margin-top: 20px;
    margin-bottom: 10px;
}

.modal-content p {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    color: var(--ll-color-text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.modal-content a {
    color: var(--ll-color-primary);
    text-decoration: none;
}

.modal-content a:hover {
    text-decoration: underline;
}

.modal-close {
    color: #999;
    float: right;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s ease;
}

.modal-close:hover,
.modal-close:focus {
    color: #333;
}

/* Responsive - Mobile */
@media (max-width: 576px) {
    .ira-section {
        padding: 16px;
    }

    .hero-title {
        font-size: 26px;
        margin-bottom: 0;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .ira-heading {
        font-size: 25px;
        margin-bottom: 16px;
    }

    .ira-description {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .ira-cta-btn {
        font-size: 16px;
        padding: 16px 20px;
    }

    .ira-list {
        font-size: 18px;
    }

    .recap-list {
        font-size: 18px;
    }

    .footer-disclaimer {
        font-size: 9px;
    }

    .footer-advertorial {
        font-size: 9px;
    }

    .modal-content {
        margin: 10% auto;
        padding: 20px;
        max-width: 90%;
    }

    .modal-content h2 {
        font-size: 24px;
    }

    .modal-content h3 {
        font-size: 16px;
    }

    .modal-content p {
        font-size: 14px;
    }
}
