* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #fbf3e4;
    color: #311c74;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

.hero {
    background: linear-gradient(135deg, #311c74, #1d3aa2);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    color: #fbf3e4;
}

.hero p {
    opacity: 0.9;
    margin-bottom: 30px;
}

.section {
    padding: 70px 0;
}

.section.alt {
    background: white;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #311c74;
}

p {
    margin-bottom: 15px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border-left: 5px solid #da2968;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

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

.card h3 {
    color: #1d3aa2;
    margin-bottom: 8px;
}

.timeline {
    list-style: none;
    margin-top: 20px;
}

.timeline li {
    margin-bottom: 10px;
}

.schedule p {
    margin-bottom: 8px;
}

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

.video-placeholder a {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 8px;
    background: #da2968;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.video-placeholder a:hover {
    background: #b61f55;
}

.btn-primary {
    display: inline-block;
    background: #da2968;
    color: white;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #b61f55;
}

.cta {
    background: linear-gradient(135deg, #1d3aa2, #311c74);
    color: white;
    text-align: center;
}

.cta h2 {
    color: #fbf3e4;
}

footer {
    text-align: center;
    padding: 30px;
    font-size: 0.9rem;
    color: #311c74;
    opacity: 0.7;
}

/* Responsive */

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}