/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #f5f7fa;
    color: #333;
    overflow-x: hidden;
    padding: 0;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #2C3E50;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

header img {
    height: 50px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: white;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease, transform 0.3s ease;
}

nav ul li a:hover {
    color: #f39c12;
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    color: white;
    text-align: center;
    flex-direction: column;
    padding: 0 50px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero .cta-button {
    background-color: #f39c12;
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 16px;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero .cta-button:hover {
    background-color: #e67e22;
    transform: scale(1.05);
}

/* Featured Programs Section */
.programs {
    padding: 80px 50px;
    text-align: center;
    background-color: #ffffff;
}

.programs h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2C3E50;
    font-weight: 600;
    text-transform: uppercase;
}

.program-list {
    display: flex;
    justify-content: space-evenly;
    gap: 30px;
    flex-wrap: wrap;
}

.program-item {
    background-color: #ffffff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 8px;
    width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

.program-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.program-item h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2C3E50;
    font-weight: 600;
}

.program-item p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #7f8c8d;
}

.program-item .cta-button {
    background-color: #f39c12;
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 16px;
}

.program-item .cta-button:hover {
    background-color: #e67e22;
    transform: scale(1.05);
}

/* Call to Action Section */
.cta {
    background-color: #f39c12;
    padding: 80px 50px;
    text-align: center;
    color: white;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 40px;
}

.cta .cta-button {
    background-color: #ffffff;
    color: #f39c12;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta .cta-button:hover {
    background-color: #f1c40f;
    color: #ffffff;
    transform: scale(1.05);
}

/* Footer Section */
footer {
    background-color: #2C3E50;
    color: white;
    padding: 40px 50px;
    text-align: center;
}

footer nav ul {
    display: flex;
    justify-content: center;
    gap: 20px;
}

footer nav ul li {
    list-style: none;
}

footer nav ul li a {
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    transition: color 0.3s ease;
}

footer nav ul li a:hover {
    color: #f39c12;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    header img {
        height: 40px;
    }

    nav ul {
        flex-direction: column;
    }

    .program-list {
        flex-direction: column;
        align-items: center;
    }

    .program-item {
        width: 90%;
    }

    .cta {
        padding: 50px 30px;
    }
}
