:root {
    --primary: #c98b7a; /* Warm rose/peach */
    --primary-hover: #b57666;
    --text-main: #f0e6e4;
    --text-muted: #dcd0cd;
    --glass-bg: rgba(25, 25, 35, 0.4);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: #0d1117;
    overflow-x: hidden;
}

/* Background Image Overlay */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('../images/bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
    box-shadow: inset 0 0 0 2000px rgba(13, 17, 23, 0.3);
}

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

.text-center {
    text-align: center;
}

/* Typography */
h1 {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #ecd9d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #fff;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #fff;
}

h4 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #fff;
}

p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

/* Glassmorphism Utilities */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--glass-shadow);
    transition: transform 0.3s ease, background 0.3s ease;
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: rgba(25, 25, 35, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 15px;
    font-size: 1rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #fff;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(201, 139, 122, 0.4);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 139, 122, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid var(--glass-border);
    padding: 10px 20px;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    padding: 60px 40px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 25px;
}

.cta-group {
    margin-top: 40px;
}

.sub-cta {
    font-size: 0.9rem;
    margin-top: 15px;
    opacity: 0.8;
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 50px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
}

.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.profile-photo:hover {
    transform: scale(1.05);
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 40px 30px;
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(25, 25, 35, 0.6);
}

.icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Steps Section */
.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.step {
    position: relative;
    padding: 40px 30px;
}

.step-number {
    position: absolute;
    top: -25px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(201, 139, 122, 0.4);
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0 150px;
}

.cta-card {
    background: linear-gradient(135deg, rgba(201, 139, 122, 0.2), rgba(25, 25, 35, 0.6));
    border-color: rgba(201, 139, 122, 0.3);
}

/* Footer */
.glass-footer {
    background: rgba(13, 17, 23, 0.8);
    backdrop-filter: blur(10px);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.social-icon {
    color: var(--text-muted);
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.disclaimer {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 900px) {
    .about-grid, .benefits-grid, .steps-container {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .glass-nav {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
        border-radius: 20px;
    }
    
    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
}
