* {
    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, #1b2d3d);
    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: #00bcd4;
}

.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: #00bcd4;
}

.cta-btn {
    background: #00bcd4;
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-btn:hover {
    background: #0097a7;
}

/* ========== HERO ========== */
.hero {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.75)), url('/images/mnlhero.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: 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: #00bcd4;
    color: #fff;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #0097a7;
}

.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);
}

/* ========== 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(220px, 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(0,188,212,0.25);
}

.profile-img {
    height: 280px;
    overflow: hidden;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.profile-card:hover .profile-img img {
    transform: scale(1.08);
}

.profile-info {
    padding: 18px;
    text-align: center;
}

.profile-info h3 {
    color: #00bcd4;
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.profile-info p {
    color: #bbb;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.profile-meta {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 14px;
}

.book-btn {
    display: inline-block;
    background: #00bcd4;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.3s;
}

.book-btn:hover {
    background: #0097a7;
}

/* ========== CONTENT ========== */
.content-section {
    background: #121212;
    color: #ddd;
}

.content-section h2 {
    color: #00bcd4;
    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 h3 {
    color: #4dd0e1;
    font-size: 1.25rem;
    margin: 25px 0 12px;
}

.content-section p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.content-section ul {
    margin: 12px 0 20px 22px;
}

.content-section li {
    margin-bottom: 7px;
}

/* ========== 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;
    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: #00bcd4;
}

/* ========== 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: #00bcd4;
}

.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: repeat(auto-fill, minmax(160px, 1fr));
    }

    .profile-img {
        height: 220px;
    }
}