.hero {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.hero img {
    max-width: 150px;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.hero p {
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0.9;
}

#main-body {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.video-section {
    background: var(--primary-color2);
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.video-section h2 {
    margin-bottom: 1rem;
    /* color: var(--primary-color); */
}

.video-section video {
    max-width: 100%;
    border-radius: 8px;
}

.about {
    text-align: center;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.about h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.cta {
    text-align: center;
    margin-bottom: 3rem;
}

.cta a {
    display: inline-block;
    background: var(--primary-color);
    color: var(--accent1-color);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

.cta a:hover {
    background: var(--secondary-color);
}

/* 
footer {
    text-align: center;
    padding: 1rem;
    background: var(--accent3-color);
    font-size: 0.9rem;
    opacity: 0.85;
} */

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

    .about p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero img {
        max-width: 120px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

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

    .about p {
        font-size: 0.95rem;
    }

    .cta a {
        padding: 0.7rem 1.2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 1.5rem 1rem;
    }

    .hero h1 {
        font-size: 1.3rem;
    }

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

    .about h2 {
        font-size: 1.2rem;
    }

    .about p {
        font-size: 0.9rem;
    }

    .cta a {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}