:root {
    --primary: #ee2b2b;
    --primary-light: #ff5e5e;
    --dark: #111827;
    --gray-light: #f9fafb;
    --gray: #6b7280;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.8);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #fcfcfc;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Premium Background Blobs */
.background-blob {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(238, 43, 43, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    top: -200px;
    right: -200px;
    z-index: -1;
    filter: blur(50px);
}

.blob-2 {
    top: auto;
    bottom: -200px;
    left: -200px;
    background: radial-gradient(circle, rgba(238, 43, 43, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Styles */
header {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 24px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -1px;
}

nav .nav-link {
    text-decoration: none;
    color: var(--gray);
    font-weight: 600;
    margin-left: 32px;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    padding: 80px 0 40px;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.hero p {
    color: var(--gray);
    font-weight: 500;
}

/* Content Card */
.content-card {
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
    margin-bottom: 80px;
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.tabs {
    display: flex;
    background: var(--gray-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.tab {
    padding: 20px 40px;
    font-weight: 700;
    color: var(--gray);
    cursor: pointer;
    border-bottom: 3px solid transparent;
}

.tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: var(--white);
}

.content-body {
    padding: 60px;
}

h2 {
    font-size: 24px;
    color: var(--dark);
    margin: 40px 0 20px;
}

h2:first-child {
    margin-top: 0;
}

p {
    margin-bottom: 24px;
    color: #4b5563;
    font-size: 17px;
}

ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

li {
    margin-bottom: 12px;
    color: #4b5563;
}

/* Footer Styles */
footer {
    padding: 60px 0;
    background: var(--dark);
    color: var(--white);
    text-align: center;
}

footer p {
    color: #9ca3af;
    font-size: 14px;
    margin-bottom: 8px;
}

.powered {
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 16px;
    font-size: 12px !important;
}

.powered span {
    color: var(--primary);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero h1 { font-size: 32px; }
    .content-body { padding: 32px; }
    .tab { padding: 16px 24px; }
}
