
    .support-steps-section {
    padding: 80px 0;
    background: #f9fafc;
}

.support-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
}

.step-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    width: 23%;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.step-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.step-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #FCA305;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    line-height: 90px;
    margin: 0 auto 20px;
}

.step-box h4 {
    font-size: 18px;
    color: #333;
    margin: 0;
}

/* Tablet */
@media (max-width: 991px) {
    .step-box {
        width: 48%;
        margin-bottom: 30px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .step-box {
        width: 100%;
    }
}

    .support-plan-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #e1f1e4, #ffffff);
}

.plan-card {
    max-width: 750px;
    margin: 50px auto 0;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-8px);
}

.plan-header {
    background: #31d6af;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
}

.plan-header h3 {
    font-size: 26px;
    margin-bottom: 10px;
}

.plan-price {
    font-size: 42px;
    font-weight: bold;
}

.plan-sub {
    font-size: 14px;
    opacity: 0.9;
}

.plan-body {
    padding: 40px 30px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.plan-features li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #444;
    position: relative;
    padding-left: 25px;
}

.plan-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.plan-level-table table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.plan-level-table th {
    background: #f8f8f8;
    padding: 10px;
    font-weight: 600;
}

.plan-level-table td {
    padding: 10px;
    border-top: 1px solid #eee;
    text-align: center;
}

.plan-btn {
    text-align: center;
}

.plan-btn .default-btn {
    padding: 12px 35px;
    font-size: 16px;
    border-radius: 30px;
}

/* Mobile */
@media (max-width: 576px) {
    .plan-card {
        margin: 30px 15px 0;
    }

    .plan-header {
        padding: 30px 15px;
    }

    .plan-price {
        font-size: 32px;
    }

    .plan-body {
        padding: 25px 20px;
    }
}

    .support-trust-line{
    font-size:14px;
    color:#666;
    letter-spacing:0.5px;
}

.vision-section{
    padding:100px 0;
    background:#f4f7f9; /* Soft neutral background */
}

.vision-box{
    background:#ffffff;
    padding:70px 50px;
    border-radius:20px;
    max-width:900px;
    margin:auto;
    box-shadow:0 15px 40px rgba(0,0,0,0.06);
    text-align:center;
    position:relative;
}

.vision-box:before{
    content:"";
    width:60px;
    height:4px;
    background:#76B310; /* Your brand green */
    display:block;
    margin:0 auto 25px;
    border-radius:10px;
}

.vision-box h2{
    font-size:30px;
    margin-bottom:20px;
    color:#222;
}

.vision-box p{
    font-size:17px;
    color:#555;
    line-height:1.8;
}

/* Responsive */
@media(max-width:576px){
    .vision-box{
        padding:40px 25px;
    }

    .vision-box h2{
        font-size:24px;
    }
}

    .trust-section{
    padding:100px 0;
    background:#f9fafc;
}

.trust-wrapper{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    margin-top:50px;
}

.trust-box{
    width:32%;
    background:#ffffff;
    padding:40px 25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
    transition:0.3s;
}

.trust-box:hover{
    transform:translateY(-8px);
}

.trust-icon{
    font-size:40px;
    margin-bottom:20px;
}

.trust-box h4{
    font-size:20px;
    margin-bottom:15px;
}

.trust-box p{
    font-size:15px;
    color:#555;
}

/* Responsive */
@media(max-width:991px){
    .trust-box{
        width:48%;
        margin-bottom:30px;
    }
}

@media(max-width:576px){
    .trust-box{
        width:100%;
    }
}


.activate-cta-section{
    padding:100px 0;
    background:linear-gradient(135deg,#1e3c72,#2a5298);
    color:#fff;
    text-align:center;
}

.activate-cta-section h2{
    font-size:34px;
    margin-bottom:20px;
}

.activate-cta-section p{
    font-size:18px;
    opacity:0.9;
    margin-bottom:35px;
}

.activate-cta-btn .default-btn{
    background:#fff;
    color:#2a5298;
    padding:12px 40px;
    border-radius:30px;
    font-weight:600;
    transition:0.3s;
}

.activate-cta-btn .default-btn:hover{
    background:#FCA305;
    color:#fff;
}

.disclaimer-section{
    padding:70px 0;
    background:#fff8f0;
}

.disclaimer-box{
    max-width:900px;
    margin:auto;
    background:#ffffff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
}

.disclaimer-box h4{
    margin-bottom:15px;
    font-size:20px;
}

.disclaimer-box p{
    font-size:15px;
    color:#555;
    line-height:1.7;
}

.faq-section{
    padding:100px 0;
    background:#f9fafc;
}

.faq-item{
    margin-bottom:20px;
    padding:25px;
    background:#ffffff;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.faq-item h5{
    font-size:18px;
    margin-bottom:10px;
}

.faq-item p{
    font-size:15px;
    color:#555;
}

.final-cta{
    padding:70px 0;
    background:#76B310;
    text-align:center;
    color:#fff;
}

.final-cta h3{
    font-size:28px;
    margin-bottom:20px;
}

.hero-slider-section{
    position:relative;
}

.hero-slide{
    height:90vh;
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    position:relative;
}

.hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.55);
}

.hero-content{
    position:relative;
    color:#fff;
    max-width:650px;
    z-index:2;
}

.hero-content h1{
    font-size:52px;
    margin-bottom:20px;
}

.hero-content p{
    font-size:18px;
    line-height:1.7;
    margin-bottom:30px;
}

.hero-btns .default-btn{
    margin-right:15px;
    margin-bottom:10px;
}

/* Tablet */
@media(max-width:991px){
    .hero-slide{
        height:70vh;
        text-align:center;
    }

    .hero-content{
        margin:auto;
    }

    .hero-content h1{
        font-size:36px;
    }
}

/* Mobile */
@media(max-width:576px){
    .hero-slide{
        height:65vh;
        padding:20px 0;
    }

    .hero-content h1{
        font-size:26px;
    }

    .hero-content p{
        font-size:15px;
    }
}



.support-contact-section{
    background:#f9fafc;
}

.support-box{
    background:#ffffff;
    padding:40px 25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
    transition:0.3s;
    height:100%;
}

.support-box:hover{
    transform:translateY(-8px);
}

.support-icon{
    font-size:40px;
    color:#76B310;
    margin-bottom:20px;
}

.support-box h4{
    font-size:20px;
    margin-bottom:15px;
}

.support-box p{
    font-size:16px;
    margin-bottom:8px;
}

.support-box span{
    font-size:13px;
    color:#777;
}

.support-note p{
    font-size:15px;
    color:#555;
    max-width:700px;
    margin:auto;
}




.growth-diagram-section{
    padding:100px 0;
    background:#f4f7f9;
    text-align:center;
}

.growth-wrapper{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    margin-top:60px;
    gap:40px;
}

.growth-level{
    background:#ffffff;
    width:140px;
    height:140px;
    border-radius:50%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    transition:0.4s;
    position:relative;
}

.growth-level:hover{
    transform:translateY(-10px) scale(1.05);
}

.growth-level h4{
    font-size:22px;
    margin:0;
    color:#76B310;
}

.growth-level span{
    font-size:14px;
    color:#555;
}

.growth-arrow{
    font-size:28px;
    color:#76B310;
}
@media(max-width:768px){
    .growth-wrapper{
        flex-direction:column;
    }
    .growth-arrow{
        transform:rotate(90deg);
    }
}



.income-card-section{
    padding:100px 0;
    background:#ffffff;
}

.income-cards{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:30px;
    margin-top:60px;
}

.income-card{
    background:#ffffff;
    width:260px;
    padding:40px 25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 20px 60px rgba(0,0,0,0.08);
    transition:0.4s;
    position:relative;
    overflow:hidden;
}

.income-card:before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:#76B310;
}

.income-card:hover{
    transform:translateY(-10px);
}

.income-card h3{
    font-size:20px;
    margin-bottom:15px;
}

.income-amount{
    font-size:28px;
    font-weight:bold;
    color:#76B310;
    margin:15px 0;
}

.income-members{
    font-size:14px;
    color:#555;
}


.final-cta-section{
    padding:120px 0;
    background:linear-gradient(135deg,#0f2027,#203a43,#2c5364);
    position:relative;
    text-align:center;
    color:#fff;
}

.final-cta-box{
    max-width:850px;
    margin:auto;
}

.final-cta-section h2{
    font-size:36px;
    margin-bottom:20px;
    font-weight:700;
}

.final-cta-section p{
    font-size:18px;
    opacity:0.9;
    margin-bottom:40px;
    line-height:1.8;
}

.final-cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.cta-primary{
    background:#76B310;
    color:#fff;
    padding:14px 40px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
    box-shadow:0 10px 30px rgba(0,0,0,0.3);
}

.cta-primary:hover{
    background:#fff;
    color:#76B310;
    transform:translateY(-5px);
}

.cta-secondary{
    background:transparent;
    border:2px solid #fff;
    color:#fff;
    padding:14px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.cta-secondary:hover{
    background:#fff;
    color:#2c5364;
}

@media(max-width:576px){
    .final-cta-section h2{
        font-size:26px;
    }

    .final-cta-section p{
        font-size:16px;
    }
}



.faq-section-modern{
    padding:120px 0;
    background:#f4f7f9;
}

.faq-wrapper{
    max-width:850px;
    margin:60px auto 0;
}

.faq-item-modern{
    margin-bottom:20px;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    background:#fff;
}

.faq-question{
    width:100%;
    padding:20px 25px;
    border:none;
    background:#ffffff;
    font-size:16px;
    text-align:left;
    font-weight:600;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    transition:0.3s;
}

.faq-question:hover{
    background:#f9fafc;
}

.faq-icon{
    font-size:22px;
    color:#76B310;
    transition:0.3s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height 0.4s ease;
    background:#fafafa;
    padding:0 25px;
}

.faq-answer p{
    padding:15px 0 20px;
    font-size:14px;
    color:#555;
    line-height:1.7;
}


.custom-about-img{
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 25px 70px rgba(0,0,0,0.08);
    transition:0.4s;
}

.custom-about-img:hover{
    transform:translateY(-8px);
}
