body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Footer Top Section */
.footer {
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
}

.footer-top {
    text-align: center;
    padding: 20px;
    border-bottom: 1px solid gray;
}

.footer-top h3 {
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 15px;
}

.footer-top h3 i {
    font-style: italic;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.footer-links a:hover {
    border-color: gray;
}

/* Footer Bottom Section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 30px 20px;
}

.footer-column {
    flex: 1;
    padding: 10px;
    min-width: 200px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li:first-child {
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: gray;
}

.footer-column small {
    display: block;
    margin-top: 15px;
    font-size: 12px;
    color: gray;
}

.footer-column p {
    margin-top: 10px;
    font-size: 14px;
}

.footer-logo {
    width: 100px;
    margin-bottom: 15px;
}

/* Building Icon */
.building {
    width: 50px;
    height: 100px;
    background-image: url('building-icon.png');
    /* Replace with actual building image */
    background-size: cover;
    margin-top: 15px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        /* text-align: center; */
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-column {
        margin-bottom: 20px;
    }
} 