/* Membership Page - Benefits Section */

.membership-section {
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.benefit-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    color: #000000;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-card h3 {
    font-family: 'Cairo', sans-serif !important;
    font-size: 24px !important;
    font-weight: 900 !important;
    color: #000000 !important;
    margin-bottom: 15px;
    line-height: 1.3;
}

.benefit-card p {
    font-family: 'Cairo', sans-serif !important;
    font-size: 18px !important;
    color: #000000 !important;
    line-height: 1.6;
    margin: 0;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefit-card h3 {
        font-size: 22px !important;
    }
    
    .benefit-card p {
        font-size: 16px !important;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    
    .benefit-card h3 {
        font-size: 20px !important;
    }
    
    .benefit-card p {
        font-size: 15px !important;
    }
}

@media (max-width: 480px) {
    .benefit-card {
        padding: 25px 20px;
    }
    
    .benefit-card h3 {
        font-size: 18px !important;
    }
    
    .benefit-card p {
        font-size: 14px !important;
    }
    
    .benefit-icon {
        font-size: 40px;
    }
}
