/* Free Will Page Styles */
/* Brand Colors: darkblue #001f54, mediumblue #017cda, lightblue #2dc7ff */

main {
    text-align: center;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #017cda 0%, #001f54 100%);
    color: #ffffff;
    padding: 100px 20px 80px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 24px;
    line-height: 1.2;
    color: #ffffff;
}

.will-logo {
    height: 5rem;
    width: auto;
    display: block;
    margin: 0 auto;
}

.hero-subheadline {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.7;
    color: #ffffff;
    opacity: 0.95;
}

.hero-subtext {
    font-size: 1rem;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
}

/* Get Started Button - Primary (White on dark backgrounds) */
.get-started-btn {
    display: inline-block;
    padding: 20px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #001f54;
    background-color: #ffffff;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.get-started-btn:hover {
    background-color: #2dc7ff;
    color: #001f54;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.get-started-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.get-started-btn i {
    margin-left: 10px;
}

/* Get Started Button - Secondary (Blue on light backgrounds) */
.get-started-btn-secondary {
    display: inline-block;
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    background-color: #017cda;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(1, 124, 218, 0.3);
    margin-top: 30px;
}

.get-started-btn-secondary:hover {
    background-color: #2dc7ff;
    color: #001f54;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(1, 124, 218, 0.4);
}

.get-started-btn-secondary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(1, 124, 218, 0.3);
}

.get-started-btn-secondary i {
    margin-left: 10px;
}

/* Section Content */
.section-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #001f54;
    margin-bottom: 30px;
}

.section-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
    text-align: left;
}

.section-subtitle {
    font-size: 1.15rem !important;
    font-weight: 600;
    color: #001f54 !important;
    margin-top: 30px !important;
}

.highlight-text {
    font-size: 1.3rem !important;
    font-weight: 600;
    color: #001f54 !important;
    margin-top: 25px !important;
    margin-bottom: 25px !important;
    text-align: center !important;
}

/* Info Needed Section */
.info-needed-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.info-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    margin: 0 auto;
}

.info-card h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.info-card > p {
    text-align: center !important;
    color: #555;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.info-list li {
    background: #f0f7ff;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 1rem;
    color: #001f54;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-list li i {
    color: #017cda;
}

.info-note {
    font-size: 0.95rem !important;
    color: #666 !important;
    text-align: center !important;
    margin-top: 20px !important;
    line-height: 1.7 !important;
}

/* Why This Exists Section */
.why-exists-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

/* What You're Getting Section */
.what-getting-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    max-width: 700px;
    text-align: left;
}

.benefits-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.benefits-list li i {
    color: #017cda;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 4px;
}

.book-cover-container {
    margin: 40px auto;
    text-align: center;
    background: transparent;
}

.book-cover {
    max-width: 600px;
    width: 100%;
    height: auto;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.no-cost-box {
    background: linear-gradient(135deg, #001f54 0%, #013a6b 100%);
    color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    margin-top: 40px;
}

.no-cost-box h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.no-cost-box p {
    color: rgba(255, 255, 255, 0.9) !important;
    text-align: center !important;
    margin-bottom: 0 !important;
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.steps-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.step {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #001f54 0%, #017cda 100%);
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #001f54;
    margin-bottom: 15px;
}

.step p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    text-align: center;
}

/* The Truth About Wills Section */
.truth-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.truth-intro {
    font-style: italic;
    color: #555 !important;
}

.limits-list {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    max-width: 700px;
    text-align: left;
}

.limits-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.limits-list li i {
    color: #dc3545;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 4px;
}

/* Who This Is For Section */
.who-for-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.who-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 700px;
    text-align: left;
}

.who-list li {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.who-list li i {
    color: #017cda;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 4px;
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #017cda 0%, #001f54 100%);
    color: #ffffff;
}

.final-cta-section h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-subhead {
    font-size: 1.3rem !important;
    color: rgba(255, 255, 255, 0.95) !important;
    margin-bottom: 40px !important;
    text-align: center !important;
}

.cta-note {
    font-size: 1rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-top: 25px !important;
    text-align: center !important;
}

/* Footer Reassurance Section */
.footer-reassurance-section {
    padding: 60px 20px;
    background-color: #f0f0f0;
}

.footer-reassurance-section p {
    font-size: 1rem !important;
    color: #666 !important;
    text-align: center !important;
    line-height: 1.8 !important;
    max-width: 1000px;
    margin: 0 auto !important;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .steps-container {
        flex-wrap: wrap;
    }

    .step {
        min-width: 280px;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 70px 20px 60px;
        min-height: auto;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-subheadline {
        font-size: 1.1rem;
    }

    .section-content h2 {
        font-size: 1.8rem;
    }

    .get-started-btn {
        padding: 18px 40px;
        font-size: 1rem;
    }

    .get-started-btn-secondary {
        padding: 16px 35px;
        font-size: 1rem;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .step {
        max-width: 100%;
    }

    .info-card {
        padding: 40px 25px;
    }

    .info-list {
        flex-direction: column;
        align-items: center;
    }

    .final-cta-section h2 {
        font-size: 2rem;
    }

    .benefits-list li,
    .limits-list li,
    .who-list li {
        font-size: 1rem;
    }

    .no-cost-box {
        padding: 30px 20px;
    }

    .no-cost-box h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 1.6rem;
    }

    .section-content h2 {
        font-size: 1.5rem;
    }

    .get-started-btn {
        padding: 16px 30px;
        font-size: 0.95rem;
    }

    .get-started-btn-secondary {
        padding: 14px 25px;
        font-size: 0.95rem;
    }

    .highlight-text {
        font-size: 1.15rem !important;
    }
}
