/* Footer Styles */
.footer {
    background-color: #000066; /* Matches the color of your logo */
    color: white;
    padding: 40px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    /*flex-basis: 30%;*/
    margin-bottom: 20px;
}

.footer-section h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #FFD700; /* Optional accent color */
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #FFD700; /* Accent color for hover state */
}

/* Social Media Icons */
.social-icons {
    display: flex;
    justify-content: center;
    padding: 0;
}

.social-icons li {
    margin: 0 10px;
}

.social-icons li a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-icons li a:hover {
    color: #FFD700; /* Accent color for hover state */
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 20px;
    padding: 20px 0;
    background-color: #000055;
    color: white;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        flex-basis: 100%;
        text-align: center;
        margin-bottom: 30px;
    }
}
