/* Modern Footer Styles */
.site-footer {
    background-color: #004d40; /* Dark teal to match header */
    color: #ffffff;
    padding: 60px 0 0;
    font-size: 15px;
}

.site-footer .footer-top {
    padding-bottom: 40px;
}

.site-footer .footer-widget {
    margin-bottom: 30px;
}

.site-footer .footer-widget h5 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.site-footer .footer-widget h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 2px;
    background-color: #4db6ac; /* A lighter accent teal */
}

.site-footer p.about-text {
    color: #b0e0e6; /* Lighter shade of text */
    line-height: 1.7;
}

.site-footer .footer-links {
    list-style: none;
    padding: 0;
}

.site-footer .footer-links li {
    margin-bottom: 12px;
}

.site-footer .footer-links a {
    color: #b0e0e6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer .footer-links a:hover {
    color: #fff;
}

.site-footer .footer-links i {
    font-size: 12px;
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.site-footer .footer-links a:hover i {
    transform: translateX(4px);
}

.site-footer .contact-info p, .site-footer .contact-info a {
    margin-bottom: 15px;
    color: #b0e0e6;
    text-decoration:none;
    display: flex;
    align-items: flex-start;
}
.site-footer .contact-info a:hover{
    color: #fff;
}


.site-footer .contact-info i {
    color: #4db6ac;
    margin-right: 12px;
    font-size: 16px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 3px;
}

.site-footer .social-icons {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.site-footer .social-icons a {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.site-footer .social-icons a:hover {
    background-color: #4db6ac;
    transform: translateY(-2px);
}

.site-footer .footer-bottom {
    background-color: #003e34; /* Slightly darker teal */
    padding: 20px 0;
    margin-top: 30px;
}
.site-footer .disclaimer-text {
    color: #a0c4c0;
    font-size: 12px;
    font-style: italic;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
}
.site-footer .copyright-text {
    color: #b0e0e6;
    font-size: 14px;
    margin: 0;
} 