.sectionBecome {
    padding: 2rem 1rem;
}

.container2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.content-section {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    background-color: rgb(11, 100, 77);
}

.text-content {
    flex: 1;
    min-width: 300px;
}

.text-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.text-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
        font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif 

}

.Btn-JoinMovment {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #10b981;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.Btn-JoinMovment:hover {
    background-color: #059669;
}

.image-content {
    flex: 1;
    min-width: 300px;
}

.image-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Features Section */
 

.section-title22, .section-title-Payment {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title22 h2, .section-title-Payment h2 {
    font-size: 2.5rem;
    color: #333;
}

 
 

 
.p2 {
    text-align: center;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
}

/* How It Works Section */
.HowWorksSection22 {
    padding: 4rem 1rem;
}

.container22 {
    max-width: 1200px;
    margin: 0 auto;
}

.two-column-layout22 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.column22 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step22 {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number22 {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-content22 h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.step-content22 p {
    color: #666;
    margin-bottom: 1rem;
}

.image-container22 img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

 

.dot {
    color: #10b981;
}

.tabs-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.tab-btn {
    padding: 1rem 2rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    color: #666;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 200px;
    justify-content: center;
}

.tab-btn.active {
    background-color: #10b981;
    color: white;
    border-color: #10b981;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem 4rem;
}

.content {
    display: none;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.content.active {
    display: block;
}

.content h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

 

@media (max-width: 768px) {
    .content-section {
        flex-direction: column;
        text-align: center;
    }
    
    .text-content,
    .image-content {
        flex: none;
        width: 100%;
    }
    
    .text-content h2 {
        font-size: 1.8rem;
    }
    
    .text-content p {
        font-size: 1rem;
    }
    
    .two-column-layout22 {
        grid-template-columns: 1fr;
    }
    
    .step22 {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .step-number22 {
        margin-bottom: 1rem;
    }
    
    .tabs-container {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 400px;
    }
    
    .content > div {
        flex-direction: column;
        text-align: center;
    }
    
    .content > div > div:last-child {
        text-align: center !important;
    }
    
    
}

@media (max-width: 480px) {
    .sectionBecome,
    .features-section,
    .HowWorksSection22 {
        padding: 2rem 1rem;
    }
    
     
    
    .card22 {
        padding: 1.5rem;
    }
    
    .card22 h3 {
        font-size: 1.3rem;
    }
    
    .step-content22 h4 {
        font-size: 1.1rem;
    }
    
    .tab-btn {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .content {
        padding: 1.5rem;
    }
    
    .content h2 {
        font-size: 1.5rem;
    }
}

/* Mobile Navigation (if your navbar isn't already responsive) */
@media (max-width: 768px) {
    /* Add styles for mobile navigation if needed */
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
     .Btn-JoinMovment  {
         margin: auto;
    }
}

/* Print Styles */
@media print {
    .Btn-JoinMovment,
    .tab-btn {
        display: none;
    }
    
    .content-section {
        page-break-inside: avoid;
    }
} 
.accordion-item {
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 10px;
    padding: 10px;
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.accordion-toggle {
    background: none;
    border: none;
    color: #007bff;
    cursor: pointer;
    font-weight: 600;
    padding: 0;
}

.accordion-toggle:hover {
    text-decoration: underline;
}

.accordion-content {
    display: none;
    margin-top: 10px;
    padding-left: 26px;
    color: #555;
}
