/* Footer main section */
.footer-section {
    padding: 60px 0;
    background: var(--primary-blue);
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3); 
}
.footer-section  .logopart .footer-logo{
    width: 250px;
}
.footer-section .logopart p{
    margin-top: 12px;
    font-size: 18px;
    line-height: 28px;
}

.footer-section a {
    color: var(--white);
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-section a:hover {
    color: var(--mint-green);
}


.footer-section ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.footer-section ul li {
    margin-bottom: 8px;
}
.footer-section h4 {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 600;
    width: max-content;
    border-bottom: 4px solid var(--white);
    padding-bottom: 10px;
}
.footer-section .contact{
    margin-bottom: 30px;
}
.footer-section .social-icons li {
    display: inline-block;
}
.footer-section .social-icons a {
    font-size: 18px;
    color: var(--white);
    transition: color 0.3s ease;
}
.footer-section .social-icons a:hover {
    color: var(--bright-blue);
}

.footer .footer-bottom {
    padding: 15px 0;
    background-color: #2A9AD9; 
    text-align: center;
    color: var(--white);
    font-size: 18px;
}
