/* Footer */
.site-footer {
    background-color: rgba(168, 213, 186, 0.6);
    padding: 20px 0;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
    box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow at the top */
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
    display: flex;
    justify-content: center;
}

.footer-links li {
    margin: 0 15px;
}

.footer-links a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: color 0.3s ease, font-size 0.3s ease; /* Smooth color and font size change */
}

.footer-links a:hover {
    color: #e59494; /* Change to a complementary color (adjust as needed) */
    font-size: 16px; /* Slightly increase the font size on hover */
}

.footer-text {
    color: #666;
    font-size: 14px;
    margin: 0;
}
