.navbar-brand {
    font-weight: bold;
    font-size: 12px;
}
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
}
.program-card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}
.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.program-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 8px;
    margin: 5px;
}
.footer {
    background-color: #343a40;
    color: white;
    margin-top: 4rem;
}
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}
.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.container-with-background-image {
    min-height:275px;
    background-position:center;
    background-size:cover;
}

.container-with-background-image h1 {
    width:100%;
    color: #ffffff;
    text-shadow: -1px -1px 1px rgba(255,255,255,.1), 1px 1px 1px rgba(0,0,0,.5);
    padding:20px 30px;
    backdrop-filter: blur(2px);
    backdrop-filter: brightness(43%);
    margin-bottom:0px;
    padding:30px 20px;
}

@media (min-width: 992px) {
    .container-with-background-image {
        min-height:440px;
        background-position:center;
        background-size:cover;
    }
    .navbar-brand {
        font-size:16px;
    }
}