/* Membership Section */
.membership {
    padding: 80px 0;
    background: #f8f9fa;
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.membership-card {
    background: white;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e9ecef;
}

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

.membership-card.featured {
    border-color: #3498db;
    transform: scale(1.05);
}

.membership-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #3498db;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.membership-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.membership-price {
    font-size: 36px;
    font-weight: bold;
    color: #3498db;
    margin-bottom: 10px;
}

.membership-period {
    color: #666;
    margin-bottom: 30px;
}

.membership-features {
    list-style: none;
    margin-bottom: 30px;
}

.membership-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f1f1;
    color: #555;
}

.membership-features li:last-child {
    border-bottom: none;
}

.membership-features li::before {
    content: '✓';
    color: #27ae60;
    font-weight: bold;
    margin-right: 10px;
}