/* VyapaarNiti Club Page Styles */
.club-hero, .club-section, .club-cta-bottom {
    padding: 2.5rem 0 2rem 0;
    background: #fff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.club-hero {
    background: linear-gradient(90deg, #f8f9fa 0%, #e3eafc 100%);
    text-align: center;
    border-bottom: 1px solid #e9ecef;
    padding-top: 100px; /* Add space for fixed navbar */
}
.club-hero-title {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #2c3e50;
    letter-spacing: 0.5px;
}
.club-hero-subtitle {
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
    color: #555;
}
.club-hero-bullets {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #007bff;
    font-weight: 500;
}
.club-btn-main {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 0.9rem 2.2rem;
    font-size: 1.1rem;
    border-radius: 2rem;
    font-weight: 600;
    transition: background 0.2s, box-shadow 0.2s;
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    cursor: pointer;
    outline: none;
}
.club-btn-main:hover, .club-btn-main:focus {
    background: #0056b3;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0,123,255,0.10);
}
.club-section {
    border-bottom: 1px solid #f0f0f0;
}
.club-section-title {
    color: #2c3e50;
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: 0.2px;
}
.club-section-content {
    max-width: 700px;
    margin: 0 auto 1.5rem auto;
    font-size: 1.08rem;
    color: #333;
    text-align: center;
}
.club-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 1.5rem auto;
    max-width: 600px;
    text-align: left;
    color: #444;
    font-size: 1.05rem;
}
.club-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.2rem;
    position: relative;
}
.club-list li:before {
    content: "•";
    color: #007bff;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    top: 0;
}
.club-experts-carousel, .club-testimonials-carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
}
.club-expert-card, .club-testimonial-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.2rem 1rem;
    min-width: 220px;
    max-width: 260px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
    text-align: center;
    border: 1px solid #e9ecef;
}
.club-expert-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.7rem;
    border: 2px solid #007bff;
}
.club-expert-name {
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: #2c3e50;
}
.club-expert-bio {
    font-size: 0.95rem;
    color: #555;
}
.club-pricing {
    background: #e3eafc;
    border-radius: 1rem;
    padding: 1.5rem 1rem;
    max-width: 400px;
    margin: 1.5rem auto;
    text-align: center;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
    border: 1px solid #b6c6e6;
}
.club-pricing-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: #2c3e50;
}
.club-pricing-amount {
    font-size: 2rem;
    color: #007bff;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.club-pricing-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    text-align: left;
    color: #444;
}
.club-pricing-list li {
    margin-bottom: 0.4rem;
    padding-left: 1.2rem;
    position: relative;
}
.club-pricing-list li:before {
    content: "✔";
    color: #388e3c;
    position: absolute;
    left: 0;
    font-size: 1.1rem;
    top: 0;
}
.club-cta-bottom {
    background: linear-gradient(90deg, #1976d2 0%, #64b5f6 100%);
    color: #fff;
    text-align: center;
    padding: 2.5rem 1rem 2rem 1rem;
    border-radius: 1.2rem;
    margin: 2rem 0 1rem 0;
}
.club-cta-bottom .cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    letter-spacing: 0.2px;
}
.club-cta-bottom .cta-description {
    font-size: 1.08rem;
    margin-bottom: 1.2rem;
}
@media (max-width: 600px) {
    .club-hero {
        padding-top: 80px;
    }
    .club-hero-title { font-size: 1.3rem; }
    .club-section-title { font-size: 1.1rem; }
    .club-section-content, .club-list, .club-pricing, .club-pricing-list { font-size: 0.98rem; }
    .club-expert-card, .club-testimonial-card { min-width: 150px; max-width: 98vw; }
    .club-cta-bottom { padding: 1.5rem 0.5rem; }
}
