/* Footer CSS */
.main-footer {
    background-color: #003f7d;
    color: #ffffff;
    padding: 60px 0 0;
    margin-top: 60px;
}

.main-footer::before {
    display: none;
}

.main-footer h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

.main-footer h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #00a0df;
}

.main-footer p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #00a0df;
    padding-left: 5px;
    text-decoration: none;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    color: rgba(255,255,255,0.8);
}

.contact-info i {
    margin-right: 10px;
    margin-top: 5px;
    color: #00a0df;
}

.contact-info a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.contact-info a:hover {
    color: #00a0df;
    text-decoration: none;
}

.footer-social {
    margin-top: 20px;
}

.footer-social .social-icon {
    margin-left: 0;
    margin-right: 10px;
    background-color: rgba(255,255,255,0.1);
    color: #ffffff;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social .social-icon:hover {
    background-color: #00a0df;
    text-decoration: none;
}

.footer-bottom {
    background-color: rgba(0,0,0,0.2);
    padding: 20px 0;
    margin-top: 40px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #00a0df;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.text-right {
    text-align: right;
}


@media (max-width: 576px) {
    .main-footer {
        padding: 30px 0 0 0;
    }
    
    .contact-info li {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .contact-info li i {
        margin-top: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-footer {
        padding: 40px 0 20px 0;
        margin-top: 40px;
    }
    
    .main-footer h4 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .footer-social {
        justify-content: center;
        margin-top: 25px;
    }
    
    .text-right {
        text-align: center;
        margin-top: 15px;
    }
    
    .footer-bottom {
        text-align: center;
        padding: 15px 0;
    }
}
