/* Container for the whole page */
.programs-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Poppins', sans-serif;
}

.page-title {
    color: #800000; /* Maroon to match your navbar */
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    border-bottom: 3px solid #d4af37; /* Gold accent */
    display: inline-block;
    padding-bottom: 10px;
}

/* Individual Program Card */
.program-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    padding: 25px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
}

/* Logo Styling */
.program-logo-wrapper {
    flex: 0 0 180px;
}

.program-logo {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #eee;
}

/* Content Styling */
.program-info {
    flex: 1;
}

.program-info h2 {
    margin-top: 0;
    color: #333;
    font-size: 1.8rem;
}

.info-section {
    margin-bottom: 15px;
}

.info-label {
    display: block;
    color: #800000;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.info-text {
    color: #555;
    line-height: 1.6;
}

/* No Programs Found */
.no-results {
    text-align: center;
    padding: 50px;
    color: #777;
    font-style: italic;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .program-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .program-logo-wrapper {
        flex: 0 0 120px;
    }
}