* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --font-family-outfit: 'Outfit', sans-serif;
    --font-family-urbanist: 'Urbanist', sans-serif;

    --primary-color: #00A33D;
    --seconday-color: #1A2B4C;
    --primary-text-color: #242424;
    --seconday-text-color: #656D71;
    --primary-white-color: #FFFFFF;
}

body {
    font-family: var(--font-family-outfit);
    background: var(--body-bg-color);
    color: var(--primary-text-color);
}

/* Apply Urbanist only to headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-urbanist);
    color: var(--seconday-color)
}

ul,
li,
a {
    padding: 0;
    text-decoration: none;
    list-style: none;
}

a:hover {
    text-decoration: none;
}

a {
    display: block;
    color: var(--primary-white-color);
}

.common-btn-style {
    background-color: var(--primary-color);
    color: var(--primary-white-color);
    padding: 5px 3px;
    border-radius: 100px;
}

.container {
    max-width: 1320px;
    margin: auto;
}

/* nav section */

.nav-section {
    border-bottom: 1px solid #E5E8EB;
}

.nav-section .navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 500;
    color: #263238;
}

.nav-section .navbar-nav .nav-link:hover,
.nav-section .navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.nav-section .navbar-brand span {
    font-size: 1.25rem;
    font-weight: 600;
}

.nav-section .navbar-nav {
    gap: 20px;
}

/* hero section */

.hero-section {
    background-image: url("../gen2_assets/images/hero_bg.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    min-height: 454px;
    color: var(--primary-white-color);
}

.hero-section h1 {
    color: var(--primary-white-color);
    font-size: 58px;
    font-weight: bolder;
}

.hero-section p {
    font-size: 18px;
}


/* wealth community */

.wealth-plan-section {
    background-color: #F6F6F6;
    padding: 100px 0px;
}

.wealth-plan-section .wealth-community span {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    background-color: #deeee4;
    border-radius: 100px;
    padding: 11px 22px;
}

.wealth-plan-section .wealth-community h2 {
    margin-top: 16px;
    font-size: 40px;
    font-weight: 700;
}

.wealth-plan-section .wealth-community p {
    color: var(--seconday-text-color);
    line-height: 24px;
}

.wealth-plan-here {
    gap: 70px;
}

.wealth-club-section {
    background: var(--primary-white-color);
    padding: 40px 52px;
    border-radius: 24px;
    position: relative;
}

.wealth-club-section .right-corner {
    top: 0px;
    right: 0px;
}

.wealth-club-section .section-header {
    text-align: center;
}

.wealth-club-section .section-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--seconday-color);
}

.wealth-club-section .section-description {
    color: var(--seconday-text-color);
    font-size: 18px;
    font-weight: 400;
    text-align: left;
    margin-top: 15px;
}

.wealth-club-section .features-row {
    margin-top: 40px;
}

.wealth-club-section .feature-card {
    border-radius: 16px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 2px 3px 15px rgba(0, 170, 61, 0.1);
    transition: all 0.3s;
    height: 100%;
    text-align: left;
}

.wealth-club-section .feature-icon {
    margin-bottom: 15px;
}

.wealth-club-section .feature-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--seconday-color);
}

.wealth-club-section .feature-description {
    font-size: 14px;
    color: var(--seconday-text-color);
    margin: 0;
}

.wealth-club-section .cta-buttons {
    margin-top: 12px;
}

.wealth-club-section .btn-custom {
    border-radius: 100px;
    padding: 15px 26px;
    color: var(--primary-white-color);
    color: var(--primary-color);
    font-weight: 600;
}

.wealth-club-section .btn-green {
    background-color: var(--primary-color);
    color: #fff;
}

.wealth-club-section .btn-outline {
    background-color: #fff;
    color: #1c2b39;
    font-weight: 500;
    padding: 15px 30px;
    margin-left: 16px;
    border: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.09);
}

.wealth-club-section .btn-outline:hover {
    background-color: #f0f0f0;
}

/* systematic investing plan */

.system-invest-section {
    background-color: var(--primary-white-color);
}

.system-invest-section .top-corner {
    top: -20px;
}

.system-invest-section .system-invest-plan {
    background-color: #F6F6F6;

}

.system-invest-plan .section-title {
    color: var(--seconday-color);
}

.system-invest-plan .system-btn {
    background-color: var(--seconday-color);
}

.system-invest-plan .feature-card {
    box-shadow: 2px 3px 15px rgb(0 0 0 / 10%);
}

.system-invest-section .wealth-community h2 {
    font-size: 36px;
}

/* faq section */

.faq-section {
    background-color: #f6f6f6;
}

.faq-section .faq-label {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 500;
}

.faq-section .faq-heading {
    font-size: 36px;
    margin-top: 6px;
    color: var(--seconday-color);
}

.faq-section .faq-item {
    background-color: var(--primary-white-color);
    border-radius: 12px;
    padding: 20px 24px;
}

.faq-section .faq-question {
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    color: var(--seconday-color);
}

.faq-section .faq-answer {
    font-size: 15px;
    color: var(--seconday-text-color);
}

.faq-section span {
    font-size: 18px;
}

.faq-section .faq-toggle {
    color: #D4AF37;
}

/* footer section */

.site-footer {
    background-color: var(--seconday-color);
    color: var(--primary-white-color);
}

.site-footer .footer-logo {
    width: 36px;
}

.site-footer .footer-brand {
    font-size: 20px;
    font-weight: 600;
}

.site-footer .footer-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    margin: 24px 0px;
}

.site-footer .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-right: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    transition: background-color 0.3s ease;
}

.site-footer .social-icons a:hover {
    background-color: #00a33d;
}

.site-footer .footer-heading {
    font-size: 16px;
    color: var(--primary-white-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.site-footer .footer-links li,
.site-footer .footer-contact li {
    margin-bottom: 10px;
    font-size: 15px;
}

.site-footer .footer-links a {
    color: #ffffff;
    text-decoration: none;
}

.site-footer .footer-links a:hover {
    text-decoration: underline;
}

.site-footer .footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
}

.site-footer a.text-muted:hover {
    color: #ffffff;
}

footer .footer-divider {
    color: #9CA3AF;
}

.footer-des {
    color: #9CA3AF;
    font-size: 14px;
}

.footer-des a {
    color: #9CA3AF;
}

/* DETAILS PAGE */
.investing-section h2 {
    font-size: 40px;
    font-weight: 700;
}

.video-wrapper {
    gap: 30px;
}

.video-thumbnail {
    border-radius: 8px;
    cursor: pointer;
}

.video-wrapper small {
    font-size: 14px;
    color: var(--primary-color);
}

.video-wrapper .video-link {
    color: var(--primary-text-color);
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
}

.video-wrapper .watch-now {
    font-size: 16px;
    width: max-content;
    font-weight: 500;
    padding: 8px 22px;
}

.video-wrapper .watch-now:hover,
.subscribe-section .subscribe-btn:hover {
    color: var(--primary-white-color);
}

.investing-section .plan-des {
    font-size: 16px;
    font-weight: 400;
    color: var(--seconday-text-color);
}

.subscribe-section {
    margin: 1rem 0;
}

.subscribe-section .subscribe-btn {
    font-size: 16px;
    font-weight: 500;
    padding: 8px 22px
}

.subscribe-note {
    font-size: 0.9rem;
    color: var(--primary-color);
}

.detail-page .faq-heading {
    font-size: 26px;
    color: var(--primary-text-color);
}

.detail-page .faq-question {
    color: var(--primary-text-color);
}

.investing-framework h6 {
    font-size: 22px;
    color: var(--primary-text-color);
    font-weight: 600;
}

.investing-framework p {
    font-size: 16px;
    font-weight: 400;
    color: #4D525F;
}

.faq-hidden {
    display: none;
}

.faq-section .show-more-btn{
    background-color: var(--seconday-color);
    color: var(--primary-white-color);
    border-radius: 100px;
    padding : 8px 22px;
}


@media (max-width: 768px) {
    .investing-section h2 {
        font-size: 32px;
    }

    .video-wrapper {
        flex-direction: column;
        gap: 10px;
    }

    .video-wrapper .video-link {
        font-size: 20px;
    }

    .subscribe-section {
        flex-direction: column;
        gap: 12px;
    }

    .hero-section {
        min-height: 320px;
        background-size: auto;
        background-position: top center;
    }

    .hero-section h1 {
        font-size: 48px;
        line-height: 48px;
    }

    .wealth-plan-section {
        padding: 50px 0px;
    }

    .wealth-plan-section .wealth-community h2 {
        font-size: 32px;
    }

    br {
        display: none;
    }

    .wealth-plan-here {
        flex-direction: column-reverse;
    }

    .wealth-club-section .cta-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }

    .faq-section .faq-heading{
        font-size: 32px;
    }
}

