body.membership-body {
    background: #fde4ef;
    font-family: "Inter", sans-serif;
    margin: 0;
    padding: 0;
}

.header {
    text-align: center;
    padding: 60px 20px 20px;
}

.header h1 {
    font-size: 36px;
    font-weight: 800;
}

.header p {
    font-size: 16px;
    color: #555;
    margin-top: 10px;
}

/* Pricing Grid */
.pricing-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 40px 20px 80px;
    flex-wrap: wrap;
}

/* Plan Card */
.plan-card {
    background: white;
    width: 320px;
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
}

.plan-card h2 {
    font-size: 24px;
    font-weight: 700;
}

.price {
    font-size: 30px;
    font-weight: 800;
    color: #ff4f7b;
    margin: 10px 0 20px;
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
    font-size: 15px;
    color: #444;
}

.plan-card ul li {
    margin-bottom: 10px;
}

/* Buttons */
.choose-btn {
    display: block;
    width: 92%;
    padding: 12px;
    border-radius: 10px;
    background: #ff4f7b;
    color: white;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
}

.choose-btn:hover {
    background: #ff2d66;
}

.choose-btn.active {
    background: #ff2d66;
}

/* Popular Badge */
.popular {
    border: 2px solid #ff4f7b;
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: #ff4f7b;
    color: white;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 30px;
    font-weight: 700;
}
