:root {
    --primary: #1e3d59;
    --secondary: #ff6e40;
    --accent: #ffc13b;
    --light: #f5f5f5;
    --dark: #17252A;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light);
}


.topbar {
    background-color: var(--primary);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}


.navbar {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar-brand {
    color: var(--primary);
    font-weight: 700;
    font-size: 24px;
    text-decoration: none;
}

.navbar-brand:hover {
    color: var(--secondary);
}

.nav-link {
    color: var(--dark);
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary);
}


.hero {
    padding: 100px 0;
    background-color: white;
}

.hero h1 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.hero .lead {
    color: var(--dark);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
}


.welcome-section {
    background-color: white;
}

.section-header h2 {
    color: var(--primary);
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.divider {
    height: 3px;
    width: 60px;
    background-color: var(--secondary);
    margin-bottom: 20px;
}

.function-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.function-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-wrapper i {
    font-size: 30px;
    color: var(--secondary);
}

.function-card h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.function-card p {
    color: var(--dark);
    margin-bottom: 0;
    line-height: 1.6;
}


.about-section {
    background-color: var(--light);
}

.about-content h2 {
    color: var(--primary);
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-features li {
    margin-bottom: 15px;
    color: var(--dark);
    display: flex;
    align-items: center;
}

.about-features li i {
    color: var(--secondary);
    margin-right: 10px;
    font-size: 1.2rem;
}

.stat-card {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    height: 100%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.stat-card h3 {
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-card p {
    color: var(--dark);
    margin-bottom: 0;
    font-weight: 500;
}


.offers-section {
    background-color: white;
}

.offer-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.offer-features h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    margin-bottom: 12px;
    color: var(--dark);
    display: flex;
    align-items: center;
}

.features-list li i {
    color: var(--secondary);
    margin-right: 10px;
    font-size: 1.2rem;
}

.offer-rating .rating-score {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.offer-rating .rating-score .total {
    font-size: 1.5rem;
    color: #666;
}

.offer-rating .stars {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.offer-rating .rating-label {
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-visit {
    background-color: var(--secondary);
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-visit:hover {
    background-color: #ff5722;
    color: white;
    transform: translateY(-2px);
}

.offer-disclaimer {
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: 20px;
}

.offer-disclaimer p {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
}

.offer-disclaimer i {
    color: var(--primary);
    margin-right: 5px;
}


@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .lead {
        font-size: 1.1rem;
    }

    .offer-card {
        padding: 20px;
    }

    .offer-features {
        text-align: center;
        padding-top: 25px;
    }

    .features-list {
        display: inline-block;
        text-align: left;
    }

    .offer-features h3 {
        font-size: 1.3rem;
        margin-top: 20px;
    }

    .offer-rating {
        margin: 20px 0;
    }

    .btn-visit {
        width: 100%;
        margin-top: 10px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .function-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    .about-content h2 {
        font-size: 1.6rem;
        text-align: center;
    }

    .about-content .divider {
        margin: 0 auto 20px;
    }

    .about-content {
        text-align: center;
        margin-bottom: 40px;
    }

    .about-features {
        display: inline-block;
        text-align: left;
    }

    .stat-card {
        margin-bottom: 20px;
    }

    .footer {
        margin-top: 20px;
    }
}


.about-page-section {
    background-color: white;
}

.about-page-section h1 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
}

.vision-mission h2 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.value-card {
    background-color: var(--light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.value-card i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.value-card h4 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.achievement-card {
    background-color: white;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.achievement-card h5 {
    color: var(--secondary);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.achievement-card p {
    color: var(--dark);
    margin: 0;
    font-size: 0.9rem;
}

.security-section {
    margin-top: 50px;
    padding: 30px;
    background-color: var(--light);
    border-radius: 10px;
}


.faq-section {
    background-color: white;
}

.faq-section h1 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
}

.faq-category h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 8px !important;
    overflow: hidden;
}

.accordion-button {
    background-color: var(--light);
    color: var(--primary);
    font-weight: 500;
    padding: 20px;
    border: none;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,0.125);
}

.accordion-button::after {
    background-size: 1.25rem;
    transition: all 0.2s ease;
}

.accordion-body {
    background-color: white;
    padding: 20px;
    color: var(--dark);
    line-height: 1.6;
}


.policy-section {
    background-color: white;
}

.policy-section h1 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
}

.policy-content {
    color: var(--dark);
}

.policy-item {
    margin-bottom: 40px;
}

.policy-item h2 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.policy-item h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin: 25px 0 15px;
    font-weight: 500;
}

.policy-item ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.policy-item ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.policy-update {
    padding: 20px;
    background-color: var(--light);
    border-radius: 8px;
}

.warning-signs ul li {
    color: #dc3545;
    font-weight: 500;
}

.support-resources h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin: 20px 0 15px;
}

.support-contact {
    margin-top: 40px;
}

.support-contact h3 {
    color: var(--primary);
    font-size: 1.5rem;
}


.contact-section {
    background-color: white;
}

.contact-section h1 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-info {
    background-color: var(--light);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.contact-info .icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info .icon-wrapper i {
    font-size: 32px;
    color: white;
}

.contact-info h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.email-address a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.email-address a:hover {
    color: var(--primary);
}

.support-hours {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}


.footer {
    background-color: var(--primary);
    color: white;
    padding: 50px 0 20px;
}

.footer-images {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


.footer-disclaimer {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-address {
    padding: 20px 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-links {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links ul {
    margin: 0;
    padding: 0;
}

.footer-links .list-inline-item:not(:last-child) {
    margin-right: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: white;
}

.footer-copyright {
    padding-top: 20px;
    font-size: 0.85rem;
    opacity: 0.7;
}
