/* CSS RESET & VARIABLES */
/** {*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    box-sizing: border-box;*/
/*    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
/*}*/

/*:root {*/
/*--primary-color: #1b365d;  Navy Blue */
/*--secondary-color: #d97706; Olive/Amber Accent */
/*    --bg-light: #b0c7e8;*/
/*    --text-dark: #334155;*/
/*    --text-light: #ffffff;*/
/*    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);*/
/*}*/

body {
    background-color: #b0c7e8;
    color: #334155;
    line-height: 1.6;
}

/* HERO SECTION */
.hero {
    background: linear-gradient(to bottom, #ff6600 0%, #ffcc99 100%);
    color: #ffffff;
    text-align: center;
    padding: 50px 20px;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.cta-btn {
    display: inline-block;
    background-color: #d97706;
    color: #ffffff;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: transform 0.3s, background-color 0.3s;
}

.cta-btn:hover {
    background-color: #b45309;
    transform: translateY(-3px);
}

/* ELIGIBILITY QUICK CHECK */
.eligibility-container {
    max-width: 1100px;
    margin: -40px auto 60px;
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 10;
}

.eligibility-box {
    padding: 20px;
    border-left: 4px solid #d97706;
    background: #fffdf9;
}

.eligibility-box h3 {
    color: #1b365d;
    margin-bottom: 10px;
}

/* INTERACTIVE TIMELINE SECTION */
.timeline-section {
    max-width: 1100px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: #1b365d;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #d97706;
    margin: 10px auto 0;
    border-radius: 2px;
}

.timeline {
    position: relative;
    padding: 20px 0;
}

/* Vertical line in the center */
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: #1b365d;
    opacity: 0.2;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 40px;
}

/* Left and Right distribution */
.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: 45%;
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(27, 54, 93, 0.15);
    border-bottom: 4px solid #1b365d;
}

/* Badge/Number indicator */
.timeline-badge {
    width: 40px;
    height: 40px;
    background: #1b365d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 8px #f8fafc;
}

.step-tag {
    display: inline-block;
    background: #e2e8f0;
    color: #1b365d;
    padding: 3px 10px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 20px;
    margin-bottom: 10px;
}

.timeline-content h3 {
    color: #1b365d;
    margin-bottom: 10px;
}

/* Empty space holder for structure */
.timeline-spacer {
    width: 45%;
}

/* FAQ SECTION (Interactive Accordion) */
.faq-section {
    max-width: 800px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.faq-item {
    background: #ffffff;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    font-weight: 600;
    color: #1b365d;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s;
}

/* Trick to handle CSS-only interaction */
.faq-toggle {
    display: none;
}

.faq-answer {
    max-height: 0;
    padding: 0 20px;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #f1f5f9;
    color: #475569;
}

/* When checkbox is checked, expand answer and rotate plus sign */
.faq-toggle:checked ~ .faq-answer {
    max-height: 200px;
    padding: 20px;
}

.faq-toggle:checked ~ .faq-question::after {
    content: '−';
}

/* FOOTER */
footer {
    background-color: #1b365d;
    color: #ffffff;
    text-align: center;
    padding: 30px;
    font-size: 0.9rem;
}

/* RESPONSIVE DESIGN (Mobile Friendly) */
@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        margin-bottom: 30px;
    }

    .timeline-content, .timeline-spacer {
        width: 100%;
    }

    .timeline-content {
        margin-left: 45px;
        width: calc(100% - 45px);
    }

    .timeline-badge {
        left: 20px;
        transform: translateX(-50%);
        box-shadow: 0 0 0 5px #f8fafc;
    }
}