/* Footer styles */
.footer {
    background-color: #1E3C72;
    color: white;
    padding: 3rem 0 0 0;
    margin-top: auto;
}

.footer .container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.footer-section-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #FFC107;
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
}

.footer-section-title:first-child {
    margin-top: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.3rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: white;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #FFC107;
}

/* Contact bar styles */
.contact-bar {
    text-align: center;
    background-color: #1E3C72;
    padding: 15px 0;
    color: white;
}

.contact-container-full {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 15px;
    margin: 0 auto;
    color: white;
    font-size: 14px;
    line-height: 1.5;
    max-width: 95%;
}

.contact-container-full a {
    color: white;
    text-decoration: underline;
}

.contact-container-full a:hover {
    color: #FFC107;
}

/* Footer copyright bar */
.footer-copyright-bar {
    background-color: #f8f9fa;
    padding: 15px 0;
    color: #333;
    border-top: 1px solid #eee;
}

.copyright-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0 15px;
}

.copyright-text {
    font-size: 14px;
    color: #333;
}

.footer-policies {
    font-size: 14px;
    color: #666;
}

.footer-policies a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-policies a:hover {
    color: #000;
}

.footer-social {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-social a {
    color: #666;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    color: #000;
    transform: translateY(-2px);
}