* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background: #0f0f0f;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, #1a1a1a, #2d1b3d);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.5);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }
        .logo {
            font-size: 28px;
            font-weight: 700;
            color: #e91e63;
            letter-spacing: 1px;
        }
        .logo span {
            color: #fff;
        }
        nav ul {
            list-style: none;
            display: flex;
            gap: 30px;
        }
        nav a {
            color: #ddd;
            font-weight: 500;
            transition: color 0.3s;
        }
        nav a:hover {
            color: #e91e63;
        }
        .cta-btn {
            background: #e91e63;
            color: #fff;
            padding: 10px 22px;
            border-radius: 30px;
            font-weight: 600;
            transition: background 0.3s;
        }
        .cta-btn:hover {
            background: #c2185b;
        }

        /* Hero */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.75)), url('/images/bnghero.jpg') center/cover no-repeat;
            min-height: 85vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            padding: 40px 20px;
        }
        .hero-content h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
        }
        .hero-content p {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.95;
        }
        .hero-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn-primary {
            background: #e91e63;
            color: #fff;
            padding: 14px 32px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.05rem;
            transition: transform 0.2s, background 0.3s;
        }
        .btn-primary:hover {
            background: #c2185b;
            transform: translateY(-2px);
        }
        .btn-secondary {
            background: transparent;
            border: 2px solid #fff;
            color: #fff;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: background 0.3s;
        }
        .btn-secondary:hover {
            background: rgba(255,255,255,0.15);
        }

        /* Sections common */
        section {
            padding: 70px 20px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .section-title {
            text-align: center;
            font-size: 2.4rem;
            margin-bottom: 15px;
            color: #fff;
        }
        .section-subtitle {
            text-align: center;
            color: #aaa;
            margin-bottom: 50px;
            font-size: 1.1rem;
        }

       /* ========== Profiles ========== */
.profiles {
    background: #161616;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
}

.profile-card {
    background: #1f1f1f;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #333;
}

.profile-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(233, 30, 99, 0.25);
}

/* ===== Full Image (No Crop) ===== */
.profile-img {
    width: 100%;
    background: #1a1a1a;
}

.profile-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.profile-card:hover .profile-img img {
    transform: scale(1.03);
}

.profile-info {
    padding: 18px;
    text-align: center;
}

.profile-info h3 {
    color: #e91e63;
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.profile-info p {
    color: #bbb;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.profile-meta {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 14px;
}

.book-btn {
    display: inline-block;
    background: #e91e63;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.3s;
}

.book-btn:hover {
    background: #c2185b;
}

/* Mobile */
@media (max-width: 576px) {
    .profile-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 12px;
    }
}

        /* Content */
        .content-section {
            background: #121212;
            color: #ddd;
        }
        .content-section h2 {
            color: #e91e63;
            font-size: 1.8rem;
            margin: 45px 0 18px;
            padding-bottom: 8px;
            border-bottom: 2px solid #333;
        }
        .content-section h2:first-of-type {
            margin-top: 0;
        }
        .content-section p {
            margin-bottom: 18px;
            font-size: 1.05rem;
        }
        .content-section ul {
            margin: 15px 0 25px 25px;
        }
        .content-section li {
            margin-bottom: 8px;
        }

        /* FAQ */
        .faq {
            background: #1a1a1a;
        }
        .faq-item {
            background: #222;
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid #333;
        }
        .faq-question {
            padding: 18px 22px;
            font-weight: 600;
            color: #fff;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-question:hover {
            background: #2a2a2a;
        }
        .faq-answer {
            padding: 0 22px 18px;
            color: #bbb;
            display: none;
        }
        .faq-item.active .faq-answer {
            display: block;
        }
        .faq-item.active .faq-question {
            color: #e91e63;
        }

        /* Footer */
        footer {
            background: #0a0a0a;
            color: #999;
            padding: 50px 20px 25px;
        }
        .footer-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-col h4 {
            color: #fff;
            margin-bottom: 18px;
            font-size: 1.15rem;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col li {
            margin-bottom: 10px;
        }
        .footer-col a:hover {
            color: #e91e63;
        }
        .footer-bottom {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid #222;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 15px;
            }
            nav ul {
                gap: 18px;
                flex-wrap: wrap;
                justify-content: center;
            }
            .hero-content h1 {
                font-size: 2.2rem;
            }
            .profile-grid {
                grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
            }
            .profile-img {
                height: 220px;
            }
        }