/* Background Image with Blinking Text */
.annual-background-image {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(to bottom, #0072a5, #02c4da);
}

.annual-background-image img {
    width: auto;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blinking-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    animation: blink 3s infinite;
    text-align: center;
}

@keyframes blink {
    0%,
    50%,
    100% {
        opacity: 1;
    }
    25%,
    75% {
        opacity: 0;
    }
}

/* Hero Section */
.hero-section {
    padding: 50px 20px;
    text-align: center;
    background-color: #f4f4f9;
}

.hero-content h1 {
    font-size: 2.5rem;
    color: #2c3e50;
}

.hero-content p {
    font-size: 1.2rem;
    color: #666;
}

.cta-button {
    background-color: #e74c3c;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #c0392b;
}

/* About Us Section */
.about-section {
    padding: 50px 20px;
    text-align: center;
}

.about-section ul {
    list-style-type: none;
    padding: 0;
}

.about-section ul li {
    margin: 10px 0;
}

.about-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-top: 20px;
    border-radius: 10px;
}

/* Programs Section */
.programs-section {
    padding: 50px 20px;
    background-color: #ecf0f1;
}

.programs-table {
    overflow-x: auto;
    margin-top: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
}

th,
td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #3498db;
    color: white;
}

/* Gallery Section */
.gallery-section {
    padding: 50px 20px;
    text-align: center;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.gallery img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Call to Action Section */
.cta-section {
    padding: 50px 20px;
    text-align: center;
    background-color: #2c3e50;
    color: white;
}

.cta-section .cta-button {
    background-color: #e74c3c;
}

/* Contact Information Section */
.contact-section {
    padding: 50px 20px;
    text-align: center;
}

.contact-section img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    margin-top: 20px;
}

/* Footer Section */
footer {
    text-align: center;
    padding: 20px;
    background-color: #34495e;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blinking-text {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .about-image {
        width: 90%;
    }

    .gallery img {
        max-width: 100%;
    }

    table {
        font-size: 0.9rem;
    }

    .annual-background-image {
        height: auto;
        width: 100vw;
    }

    .annual-background-image img {
        width: 100%;
    }
}
