body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.hero {
    text-align: center;
    padding: 60px 20px;
    background: #2a2a2a;
    color: white;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    animation: fadeInDown 1s;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.country-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.country-btn {
    padding: 10px 20px;
    border: none;
    background-color: #ff6f61;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.3s;
}

.country-btn:hover {
    transform: scale(1.05);
}

.benefits {
    padding: 40px 20px;
    background: #fff;
    text-align: center;
}

.benefits h2 {
    margin-bottom: 20px;
}

.benefit-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.benefit-card {
    background: #eaeaea;
    border-radius: 10px;
    padding: 20px;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: scale(1.05);
}

.benefit-card i {
    font-size: 2em;
    color: #ff6f61;
    margin-bottom: 10px;
}

.testimonials {
    padding: 40px 20px;
    background: #eaeaea;
    text-align: center;
}

.testimonial-slider {
    display: flex;
    overflow-x: scroll;
    gap: 20px;
    scroll-behavior: smooth;
}

.slide {
    flex: 0 0 100%;
    animation: fadeInUp 1s;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    min-width: 250px;
    max-width: 500px;
}

.programmes {
    padding: 40px 20px;
    background: #fff;
    text-align: center;
}

.programme-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.programme-card {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s;
    min-width: 250px;
    max-width: 300px;
}

.programme-card:hover {
    transform: scale(1.05);
}

.programme-card i {
    font-size: 2em;
    color: #ff6f61;
}

.faqs {
    padding: 40px 20px;
    background: #eaeaea;
}

.faq-item {
    margin: 10px 0;
}

.faq-item h3 {
    cursor: pointer;
    padding: 10px;
    background: #ff6f61;
    color: white;
    border-radius: 5px;
    font-size: 1em;
}

.faq-answer {
    display: none;
    padding: 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 5px;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FAQ Dropdown Functionality */
.faq-item h3:hover + .faq-answer,
.faq-answer:hover {
    display: block;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .benefit-cards,
    .programme-links,
    .testimonial-slider {
        flex-direction: column;
    }
}
