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

:root {
    --primary-purple: #4A1A5C;
    --secondary-purple: #6B2D7A;
    --accent-gold: #E8D4A0;
    --light-purple: #8B4A9E;
    --cream: #FFF8E7;
    --white: #FFFFFF;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --shadow: rgba(74, 26, 92, 0.1);
    --gradient: linear-gradient(135deg, #4A1A5C, #6B2D7A);
    
    /* Legacy color mappings for compatibility */
    --primary-gold: #E8D4A0;
    --dark-brown: #4A1A5C;
    --light-brown: #6B2D7A;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--cream);
}

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

/* Navigation */
.navbar {
    background: var(--dark-brown);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-gold);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s;
}

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

.btn-login {
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--primary-gold);
    border-radius: 5px;
}

.btn-signup {
    padding: 0.5rem 1.5rem;
    background: var(--gradient);
    border-radius: 5px;
    color: var(--white) !important;
}

/* Hero Section */
.hero {
    margin-top: 70px;
    background: linear-gradient(135deg, rgba(74, 26, 92, 0.9), rgba(107, 45, 122, 0.9)), url('logo-version1.png') center/cover no-repeat;
    color: var(--white);
    padding: 100px 20px;
    text-align: center;
    position: relative;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--primary-gold);
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s backwards;
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--primary-gold);
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--dark-brown);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* Special Offer Section */
.special-offer {
    background: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.offer-badge {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.special-offer h2 {
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 1rem;
}

.offer-value {
    font-size: 1.3rem;
    color: var(--primary-gold);
    margin-bottom: 3rem;
    font-weight: bold;
}

.offer-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.offer-item {
    padding: 2rem;
    background: var(--cream);
    border-radius: 10px;
    transition: transform 0.3s;
}

.offer-item:hover {
    transform: translateY(-5px);
}

.offer-item .icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.offer-item h3 {
    color: var(--dark-brown);
    margin-bottom: 0.5rem;
}

.offer-note {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

#spots-remaining {
    color: var(--primary-gold);
    font-weight: bold;
    font-size: 1.3rem;
}

/* About Section */
.about {
    padding: 80px 20px;
    background: var(--cream);
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 3rem;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text h3 {
    color: var(--primary-gold);
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.about-text ul {
    list-style: none;
    padding-left: 0;
}

.about-text li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.about-text li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

/* Services Section */
.services {
    padding: 80px 20px;
    background: var(--white);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--cream);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.service-card.featured {
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, #FFF8E7, #FFFBF0);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gradient);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.service-card h3 {
    color: var(--dark-brown);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    padding: 0.5rem 0;
    color: var(--text-dark);
}

/* Pricing Section */
.pricing {
    padding: 80px 20px;
    background: var(--cream);
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.pricing-card.featured {
    border-color: var(--primary-gold);
    transform: scale(1.05);
}

.pricing-card.special {
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, #FFF8E7, #FFFBF0);
}

.special-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: bold;
    animation: pulse 2s infinite;
}

.pricing-card h3 {
    color: var(--dark-brown);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.price {
    margin: 2rem 0;
}

.price .amount {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-gold);
}

.price .period {
    font-size: 1.2rem;
    color: var(--text-light);
}

.features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--cream);
    color: var(--text-dark);
}

.pricing-note {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
}

/* Benefits Section */
.benefits {
    padding: 80px 20px;
    background: var(--white);
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: var(--cream);
    border-radius: 10px;
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: var(--dark-brown);
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: var(--text-light);
}

/* CTA Section */
.cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--dark-brown), var(--light-brown));
    color: var(--white);
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--dark-brown);
    color: var(--cream);
    padding: 3rem 20px 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.footer-section a {
    display: block;
    color: var(--cream);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--light-brown);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .special-offer h2,
    .about h2,
    .services h2,
    .pricing h2,
    .benefits h2,
    .cta h2 {
        font-size: 2rem;
    }
}