@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&&display=swap');

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Ubuntu', sans-serif;
}

/* Hero */
.hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #0077b6 0%, #00b4d8 40%, #90e0ef 100%);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.4rem;
    max-width: 700px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Content sections */
.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #666;
    margin-top: 0.5rem;
}

/* Intro */
.intro-grid {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.intro-text {
    flex: 1;
}

.intro-text h3 {
    font-size: 1.8rem;
    color: #E22822;
    margin-bottom: 1rem;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1rem;
}

.intro-highlights {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
}

.intro-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.intro-highlights li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.05rem;
    color: #333;
}

.intro-highlights li:last-child {
    border-bottom: none;
}

/* Session details */
.session-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

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

.session-section > p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
    line-height: 1.7;
}

.session-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.session-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
}

.session-card .material-symbols-outlined {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    color: #90e0ef;
}

.session-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.session-card p {
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.6;
}

/* Pricing */
.pricing-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
    text-align: center;
}

.pricing-section h2 {
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 2rem;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto;
    overflow: hidden;
}

.pricing-header {
    background: linear-gradient(135deg, #E22822 0%, #c41e1a 100%);
    color: white;
    padding: 2rem;
}

.pricing-header .price {
    font-size: 3rem;
    font-weight: 700;
}

.pricing-header .price-detail {
    font-size: 1.1rem;
    opacity: 0.9;
}

.pricing-body {
    padding: 2rem;
}

.pricing-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.pricing-body li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
    color: #333;
}

.pricing-body li:last-child {
    border-bottom: none;
}

.pricing-body li .material-symbols-outlined {
    color: #28a745;
    font-size: 1.3rem;
}

/* CTA */
.cta-section {
    text-align: center;
    padding: 4rem 2rem;
}

.cta-section h2 {
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #E22822;
    color: white;
}

.btn-primary:hover {
    background: #c41e1a;
    transform: scale(1.05);
}

.btn-secondary {
    background: white;
    color: #1a1a2e;
    border: 2px solid #E22822;
}

.btn-secondary:hover {
    background: #E22822;
    color: white;
}

.location-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    color: #666;
}

.location-info a {
    color: #E22822;
    text-decoration: none;
}

.location-info a:hover {
    text-decoration: underline;
}

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

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

    .intro-grid {
        flex-direction: column;
    }

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

    .session-section h2,
    .pricing-section h2 {
        font-size: 2rem;
    }

    .session-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .session-grid {
        grid-template-columns: 1fr;
    }
}
