:root {
    --primary-color: #e94560;
    --secondary-color: #1a1a2e;
    --accent-color: #0f3460;
    --text-color: #f1f1f1;
    --bg-color: #f9f9f9;
    --navbar-bg: #16213e;
}

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background-color: var(--navbar-bg);
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn-nav {
    display: inline-block;
    background-color: var(--primary-color);
    padding: 8px 18px;
    border-radius: 8px;
    color: white !important;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-nav:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--navbar-bg) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    border-radius: 0 0 50px 50px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Content Section */
.content-section {
    max-width: 900px;
    margin: -60px auto 80px;
    background: white;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.rich-text {
    line-height: 1.8;
    color: #444;
    font-size: 1.1rem;
}

/* Footer */
.site-footer {
    background-color: var(--navbar-bg);
    color: #888;
    padding: 60px 0;
    margin-top: auto;
    text-align: center;
}

.site-footer p {
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .content-section {
        margin-top: 20px;
        padding: 30px;
    }
}
