/* Footer Styles */
footer {
    background-color: var(--primary-blue);
    color: var(--text-light);
}

.footer-top {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top-item {
    display: flex;
    align-items: center;
    color: var(--text-light);
    height: 100%;
}

.footer-top-item svg {
    width: 35px;
    height: 35px;
    fill: var(--text-light);
    margin-right: 15px;
    flex-shrink: 0;
}

.footer-top-item h3 {
    font-size: 18px;
    margin: 0 0 5px 0;
}

.footer-top-item p {
    font-size: 0.9em;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.footer-main {
    padding: 60px 0;
}

.footer-col h4 {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--text-light);
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9em;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--text-light);
}

.footer-col-contact p {
    margin-bottom: 12px;
    color: var(--text-light);
    line-height: 1.7;
}

.footer-col-contact strong {
    color: var(--text-light);
    font-weight: 600;
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9em;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0;
    }

    .footer-col {
        margin-bottom: 30px;
    }
}

