.site-footer {
    background-color: #0e5178;
    color: #92d4fa;
    padding: 60px 0 20px;
    font-size: 16px;
}

.site-footer .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.site-footer .footer-section {
    flex: 1;
    margin-right: 40px;
    margin-bottom: 20px;
    min-width: 200px;
}

.site-footer .footer-section:last-child {
    margin-right: 0;
}

.site-footer .footer-title {
    color: #92d4fa;
    font-size: 17px;
    margin-bottom: 20px;
    font-weight: 600;
}

.site-footer .footer-section p {
    font-size: 15px;
    line-height: 1.6;
}

.site-footer .footer-section.links ul {
    list-style-type: none;
    padding: 0;
}

.site-footer .footer-section.links li {
    margin-bottom: 10px;
}

.site-footer .footer-section.links a {
    color: #dce7f0;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.site-footer .footer-section.links a:hover {
    padding-left: 5px;
    color: #fce8a7;
}

.site-footer .footer-section.contact i {
    margin-right: 10px;
    color: #92d4fa;
}

.site-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.site-footer .social-icons {
    margin-bottom: 20px;
}

.site-footer .social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin: 0 10px;
    color: #ffffff;
    text-align: center;
    line-height: 40px;
    transition: background-color 0.3s ease;
}

.site-footer .social-icon:hover {
    background-color: #92d4fa;
    color: #0a6ca5;
}

.site-footer .copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .site-footer .footer-content {
        flex-direction: column;
    }

    .site-footer .footer-section {
        margin-right: 0;
        margin-bottom: 30px;
    }
}