/* --- Compliance Footer Module (.ft- prefix) --- */
.ft-section {
    background-color: #002147; /* Deep Navy to ground the page */
    color: #ffffff;
    padding: 50px 0 20px;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

.ft-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ft-logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.ft-address {
    color: #a0b2c6;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.ft-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.ft-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.ft-links a:hover {
    color: #FF9900;
}

.ft-divider {
    height: 1px;
    background-color: rgba(255,255,255,0.1);
    margin-bottom: 20px;
}

.ft-copyright {
    color: #7a8fa6;
    font-size: 0.8rem;
}
/* --- Footer Contact Info Styling --- */
.ft-contact-info {
    color: #a0b2c6;
    font-size: 0.95rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.ft-contact-info p {
    margin: 5px 0;
}

.ft-contact-link {
    color: #FF9900; /* Gold for clickability */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.ft-contact-link:hover {
    color: #ffffff;
}