body {
    margin: 0;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    background-color: #cac6c6;
}

header {
    background-color: #1a1a1a ;
    color: #ffffff;
    padding: 15px;
}

.section-nav {
    display: flex;
    justify-content: end;
}

.section-title {
    margin-left: 70px;
    font-size: 30px;
    width: 500px;
}


nav a {
    color: #ffffff;
    margin:  15px;
    text-decoration: none;
}

nav a:hover , .active {
    text-decoration: underline;
}

.program-list {
    padding: 30px;
}

.program-card {
    background-color: #ffffff;
    padding: 20px;
    margin: 15px 0;
    border-radius: 8px;
    box-shadow: 0 0 5px gray ;
}

.footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0 10px;
    margin-top: 40px;
}

.footer-container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-container div {
    flex: 1 1 250px;
    margin: 15px;
}

.footer h3, .footer h4 {
    margin-bottom: 15px;
    color: #ffcc00;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin: 8px 0;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffcc00;
}

.footer-bottom {
    text-align: center;
    padding: 15px 0 5px;
    margin-top: 10px;
    border-top: 1px solid gray;
    font-size: 14px;
    color: #aaa;
}

.section-nav {
    display: flex;
    align-items: center;
    justify-content: end;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff; 
    min-width: 240px;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.2); /* Soft shadow */
    z-index: 100;
    border-radius: 8px; /* Rounded corners */
    top: 40px; 
    left: 15px;
    overflow: hidden;
    border-top: 3px solid #ffcc00;}

.dropdown-content a {
    color: #333 !important; /* Dark text */
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    margin: 0 !important;
    border-bottom: 1px solid #f1f1f1;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #f8f9fa;
    color: #003366 !important; 
    padding-left: 30px
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: slideDown 0.4s ease forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown:hover .arrow {
    display: inline-block;
    transform: rotate(180deg);
    transition: 0.3s;
}