/* Footer Base */
.site-footer {
    background-color: #f9f9f9;
    padding: 60px 0 40px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #4a5864;
    border-top: 1px solid #ddd;
}

.site-footer h5 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: bold;
}

.site-footer ul {
    padding: 0;
    list-style: none;
    line-height: 2;
}

.site-footer a {
    color: #4a5864;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: #00bfff;
    text-decoration: none;
}

/* Contact Info */
.site-footer .contact-info i {
    font-size: 20px;
    color: #00bfff;
    margin-right: 12px;
}

.site-footer .social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    background-color: #4a5864;
    transition: all 0.3s ease;
}

.site-footer .social-icons a:hover {
    transform: scale(1.1);
    background-color: #00bfff;
}

/* Newsletter */
.site-footer .newsletter input[type="email"] {
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
    width: 250px;
}

.site-footer .newsletter button {
    background-color: #00bfff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.site-footer .newsletter button:hover {
    background-color: #009acd;
}

/* Award Logos */
.site-footer .awards-section img {
    max-height: 50px;
    margin-right: 15px;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .site-footer .newsletter input[type="email"] {
        width: 100%;
        border-radius: 5px;
        margin-bottom: 10px;
    }

    .site-footer .newsletter button {
        border-radius: 5px;
        width: 100%;
    }

    .site-footer .social-icons a {
        margin-bottom: 10px;
    }
}
