* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #000;
    color: #ffeb3b;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

header {
    background: #000;
    color: #ffeb3b;
    padding: 16px 0;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: #ffeb3b;
}

nav a {
    color: #ffeb3b;
    text-decoration: none;
    margin-left: 25px;
    font-size: 1rem;
    transition: color 0.2s;
}

nav a:hover {
    color: #ffd600;
}

.programs-section {
    padding: 65px 0 40px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.92)), url('unnamed (5).webp') center/cover no-repeat;
    min-height: 100vh;
}

.programs-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 38px;
    letter-spacing: 1px;
    color: #ffd600;
}

.programs-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}

.program-card {
    background: #1a1a1aed;
    border-radius: 13px;
    box-shadow: 0 2px 8px rgba(255, 235, 59, 0.13);
    overflow: hidden;
    transition: transform 0.16s;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-7px) scale(1.025);
    box-shadow: 0 8px 18px rgba(255, 235, 59, 0.16);
}

.program-card img {
    width: 100%;
    object-fit: cover;
    height: 160px;
}

.program-info {
    padding: 20px 16px 16px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.program-info h2 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffd600;
    margin-bottom: 0.6em;
}

.program-info p {
    font-size: 1rem;
    color: #ffeb3b;
    flex: 1;
}

footer {
    background: #000;
    color: #ffeb3b;
    text-align: center;
    padding: 16px 0;
    margin-top: 35px;
    font-size: .9rem;
}


/* Responsive design */

@media (max-width: 700px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }
    nav {
        margin-top: 10px;
        width: 100%;
    }
    nav a {
        display: inline-block;
        margin: 10px 10px 0 0;
    }
    .programs-title {
        font-size: 1.5rem;
    }
    .program-card img {
        height: 115px;
    }
}