* {
    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: 26px;
    font-weight: 700;
    color: #e91e63;
}

.logo span {
    color: #fff;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 26px;
}

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;
}

.cta-btn:hover {
    background: #c2185b;
}

/* Hero */
.hero {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.75)), 
                url('https://images.unsplash.com/photo-1512343879784-a960cd40e3f0?q=80&w=1600&auto=format&fit=crop') 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: 3rem;
    margin-bottom: 18px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 720px;
    margin: 0 auto 30px;
}

.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;
}

.btn-primary:hover {
    background: #c2185b;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
}

/* Common */
section {
    padding: 70px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 12px;
    color: #fff;
}

.section-subtitle {
    text-align: center;
    color: #aaa;
    margin-bottom: 45px;
    font-size: 1.1rem;
}

/* Profiles */
.profiles {
    background: #161616;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 25px;
}

.profile-card {
    background: #1f1f1f;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333;
    transition: transform 0.3s, box-shadow 0.3s;
}

.profile-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(233,30,99,0.25);
}

.profile-img {
    width: 100%;
    height: 380px;
    overflow: hidden;
    background: #1a1a1a;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.4s;
}

.profile-card:hover .profile-img img {
    transform: scale(1.05);
}

.profile-info {
    padding: 16px 15px 18px;
    text-align: center;
    background: #1f1f1f;
}

.profile-info h3 {
    color: #e91e63;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.profile-info p {
    color: #bbb;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.profile-meta {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 12px;
}

.book-btn {
    display: inline-block;
    background: #e91e63;
    color: #fff;
    padding: 8px 22px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.book-btn:hover {
    background: #c2185b;
}

/* Content */
.content-section {
    background: #121212;
    color: #ddd;
}

.content-section h2 {
    color: #e91e63;
    font-size: 1.7rem;
    margin: 40px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #333;
}

.content-section h2:first-of-type {
    margin-top: 0;
}

.content-section p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

/* FAQ */
.faq {
    background: #1a1a1a;
}

.faq-item {
    background: #222;
    margin-bottom: 14px;
    border-radius: 10px;
    border: 1px solid #333;
    overflow: hidden;
}

.faq-question {
    padding: 18px 22px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.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: 16px;
    font-size: 1.15rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 9px;
}

.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: 14px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-content h1 {
        font-size: 2.1rem;
    }
    .profile-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 12px;
    }
    .profile-img {
        height: 420px;
    }
}