/* Footer Styles */
footer.footer {
    background-color: #2e518b !important;
    color: #ffffff;
    padding: 30px 0;
    margin-top: 5px;
  }
  
/* Typography */
.footer h5 {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer p {
    color: white;
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Links */
.footer a {
    color: white;
    text-decoration: none;
    transition: opacity 0.2s ease;
    opacity: 0.9;
}

.footer a:hover {
    color: white;
    opacity: 1;
    text-decoration: none;
}

/* List Styles */
.footer ul {
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 0.75rem;
}

/* Contact Info */
.footer .contact-info {
    margin-bottom: 0.5rem;
}

/* Copyright Section */
.footer .copyright {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .copyright p {
    color: white;
    opacity: 0.8;
    margin: 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 0;
        margin-top: 2rem;
    }

    .footer h5 {
        margin-bottom: 1rem;
    }

    .footer .copyright {
        margin-top: 2rem;
    }
} 