:root {
    --primary-navy: #213056;
    --secondary-gold: #D4AF37;
    --light-gray: #F5F5F5;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
}

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

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: #ebebeb
}

/* Main wrapper styling */
.main-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}




/* Purpose Section */
.purpose-section {

    padding: 4rem 0;
}

.purpose-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
}

.purpose-quote {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--primary-navy);
    margin-bottom: 0;
}

/* MLDL Info Section */
.mldl-info-section {
    padding-top: 1rem;
    padding-bottom: 3rem
}

.info-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-navy);
    margin-bottom: 2rem;
}

.info-text {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-navy);
}

/* Gain Section */
.gain-section {

    padding: 2rem 0;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--primary-navy);
    margin-bottom: 0;
    font-weight: 700
}

.gain-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 17px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

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

.gain-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.gain-description {
    font-size: 1.1rem;
    color: var(--primary-navy);
    margin-bottom: 0;
}

/* Attend Section */
.attend-section {
    padding: 2rem 0;
}

.attend-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.attend-intro {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--primary-navy);
}

.attend-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--primary-navy);
}

.attend-list {
    margin-top: .5rem;
}

.attend-item {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    font-size: 1rem;
    line-height: 1.6;
}

.attend-item:last-child {
    border-bottom: none;
}

/* CTA Section */
.cta-section {
    background: var(--primary-navy);
    color: white;
    padding: 4rem 0;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Pricing Section */
.pricing-section {
    background: var(--light-gray);
    padding: 5rem 0;
}

.pricing-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.pricing-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-navy);
    margin-bottom: 2rem;
}

.pricing-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.pricing-discount {
    font-size: 1.1rem;
    color: var(--secondary-gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.pricing-confidence {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.mldl-info-section {
    margin: 30px 0
}

.luma-events-container {
    padding: 60px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .purpose-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .info-card,
    .attend-card,
    .pricing-card {
        padding: 2rem;
    }

    .gain-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .purpose-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
}
