* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fb;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

/* Navigation */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #26215d;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    margin: 10px;
}

    .logo span {
        color: #5ecbd6;
    }

nav ul {
    display: flex;
    list-style: none;
    gap: 22px;
    flex-wrap: wrap;
}

    nav ul li a {
        font-size: 14px;
        font-weight: 500;
        transition: color 0.3s;
    }

        nav ul li a:hover {
            color: #5ecbd6;
        }

/* Hero */
.hero {
    background: linear-gradient(90deg, #284b8c 0%, #2275B4 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

    .hero h1 {
        font-size: 42px;
        margin-bottom: 18px;
        font-weight: 700;
    }

    .hero p {
        font-size: 18px;
        margin-bottom: 30px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        opacity: 0.95;
    }

.btn {
    display: inline-block;
    padding: 14px 32px;
    background: #5ecbd6;
    color: #012647;
    font-weight: 600;
    border-radius: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    margin: 6px;
    border: 2px solid #5ecbd6;
    cursor: pointer;
    font-size: 15px;
}

    .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    }

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

    .btn-outline:hover {
        background: #fff;
        color: #012647;
    }

/* Sections */
section {
    padding: 70px 20px;
    max-width: 1200px;
    margin: auto;
}

.section-title {
    text-align: center;
    font-size: 32px;
    color: #2275B4;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 45px;
    font-size: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About */
.about-content {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-left: 5px solid #5ac3ce;
    font-size: 16px;
    color: #444;
}

/* Statistics */
.stats {
    background: #26215d;
    color: #fff;
    padding: 60px 20px;
    margin: 40px 0;
    border-radius: 12px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 42px;
    color: #5ecbd6;
    margin-bottom: 8px;
    font-weight: 700;
}

.stat-item p {
    font-size: 16px;
    opacity: 0.95;
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.benefit-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid #5ecbd6;
}

    .benefit-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    }

.benefit-icon {
    font-size: 38px;
    margin-bottom: 15px;
}

.benefit-card h4 {
    color: #003366;
    margin-bottom: 10px;
    font-size: 17px;
}

.benefit-card p {
    color: #666;
    font-size: 14px;
}

/* Process Steps */
.process-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.process-step {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #5ecbd6;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: #2275B4;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.process-step h4 {
    color: #26215d;
    margin-top: 12px;
    margin-bottom: 8px;
    font-size: 16px;
}

.process-step p {
    color: #555;
    font-size: 14px;
}

/* FAQs */
.faq-section {
    padding: 80px 20px;
}

.container {
    max-width: 1100px;
    margin: auto;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: #26215d;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px;
    color: #666;
    line-height: 1.8;
}

.faq-container {
    margin: auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 18px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    transition: .3s;
}

    .faq-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 30px rgba(0,0,0,.12);
    }

.faq-question {
    width: 100%;
    border: none;
    background: #fff;
    cursor: pointer;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #222;
    transition: .3s;
}

    .faq-question:hover {
        color: #0056b3;
    }

.icon {
    font-size: 28px;
    color: #0056b3;
    transition: .35s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease,padding .4s ease;
    padding: 0 25px;
    color: #555;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 20px;
}

.faq-answer ol {
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 10px;
}

@media(max-width:768px) {

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .faq-question {
        font-size: 16px;
        padding: 18px;
    }

    .icon {
        font-size: 24px;
    }
}

@media(max-width:768px) {

    .faq-question {
        text-align: left;
        justify-content: space-between;
    }

        .faq-question span:first-child {
            text-align: left;
            flex: 1;
        }

        .faq-question .icon {
            margin-left: 15px;
            flex: none;
        }
}

.faq-item.active .faq-question {
    background: #2275B4;
    color: #fff;
}

.faq-item.active .icon {
    color: #fff;
}

.faq-item.active {
    box-shadow: 0 10px 25px rgba(0,59,122,.25);
}

/* Contact */
.contact-container {
    background: #26215d;
    color: #fff;
    padding: 50px 40px;
    border-radius: 12px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.contact-item h4 {
    color: #5ecbd6;
    margin-bottom: 10px;
    font-size: 17px;
}

.contact-item p {
    font-size: 15px;
    opacity: 0.95;
}

/* Footer */
footer {
    padding: 20px;
    text-align: justify;
}

    footer p {
        font-size: 13px;
        opacity: 0.75;
        margin: 5px 0;
    }

    footer strong {
        font-size: 15px;
        color: #a30000;
    }

.link {
    color: #0d6efd;
    text-decoration: underline;
}

.copyright-text {
    text-align: center;
    margin-top: 25px;
}

#previous-page-button {
    font-size: 12px;
    color: #000;
    margin-top: 10px;
    min-height: 24px;
    min-width: 24px;
    padding: 4px 8px;
    line-height: 1.5;
    text-decoration: underline;
    background: none !important;
    border: none;
}

    #previous-page-button:hover {
        color: #283667;
    }

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 30px;
    }

    .hero p {
        font-size: 15px;
    }

    nav ul {
        gap: 12px;
    }

        nav ul li a {
            font-size: 12px;
        }

    .section-title {
        font-size: 26px;
    }
}

.lineHeight {
    line-height: 3;
}

/* Animation */
html {
    scroll-behavior: smooth;
}

.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all .8s ease;
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

.benefit-card {
    transition: .35s;
}

    .benefit-card:hover {
        transform: translateY(-10px) scale(1.03);
        box-shadow: 0 20px 35px rgba(0,0,0,.15);
    }

.process-step {
    transition: .35s;
}

    .process-step:hover {
        transform: translateY(-8px);
    }

.step-number {
    transition: .35s;
}

.process-step:hover .step-number {
    transform: scale(1.15) rotate(8deg);
}

.stat-item {
    transition: .35s;
}

    .stat-item:hover {
        transform: translateY(-8px);
    }

    .stat-item h3 {
        transition: .35s;
    }

    .stat-item:hover h3 {
        transform: scale(1.08);
    }

.contact-item {
    transition: .35s;
}

nav ul li a {
    position: relative;
}

    nav ul li a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        left: 0;
        bottom: -5px;
        background: #fff;
        transition: .35s;
    }

    nav ul li a:hover::after {
        width: 100%;
    }

.btn {
    transition: .35s;
}

    .btn:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 25px rgba(0,0,0,.25);
    }

.faq-answer {
    transition: max-height .45s ease,padding .35s ease;
}

.faq-item {
    transition: .35s;
}

    .faq-item:hover {
        transform: translateY(-3px);
    }

    .faq-item.active {
        animation: faqOpen .5s ease;
    }


@keyframes faqOpen {

    from {
        opacity: .5;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    transition: .35s;
}

    .logo:hover {
        transform: scale(1.06);
    }

/* Section Heading Animation */
.section-title,
.section-subtitle {
    opacity: 0;
    transform: translateY(-50px);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.22,1,0.36,1);
}

.reveal.active .section-title,
.reveal.active .section-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.reveal.active .section-subtitle {
    transition-delay: .2s;
}
