.site-footer {
    background-color: var(--yinmn-blue);
    color: var(--platinum);
    padding: 60px 0 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
    padding-right: 20px;
}

.footer-logo a {
    font-size: 24px;
    font-weight: bold;
    color: var(--light);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 15px;
}

.footer-description {
    color: var(--platinum);
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--sunset);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--pumpkin);
}

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

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

.footer-links a {
    color: var(--platinum);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
    display: block;
}

.footer-links a:hover {
    color: var(--sunset);
    padding-left: 5px;
}

/* Newsletter Section */
.newsletter-section {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 30px 0;
    margin-top: 20px;
}

.newsletter-section .footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.newsletter-content h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.newsletter-content p {
    color: #ccc;
    font-size: 14px;
}

.newsletter-form {
    margin-top: 20px;
}

.newsletter-form p {
    margin-bottom: 15px;
    color: var(--platinum);
    font-size: 14px;
}

.newsletter-form form {
    display: flex;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--light);
    border-radius: 4px;
    font-size: 14px;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--sunset);
}

.newsletter-button {
    padding: 10px 15px;
    background-color: var(--pumpkin);
    color: var(--light);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 600;
    font-size: 14px;
}

.newsletter-button:hover {
    background-color: var(--golden-gate-bridge);
}

/* Footer Bottom */
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 40px;
}

.footer-bottom .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: var(--platinum);
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--platinum);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--sunset);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .footer-column {
        flex-basis: calc(33.333% - 20px);
    }
}

@media (max-width: 992px) {
    .footer-column {
        flex-basis: calc(50% - 20px);
    }
    
    .newsletter-section .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .newsletter-form {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }
    
    .footer-column {
        width: 100%;
        padding-right: 0;
    }
    
    .footer-heading {
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .footer-heading::after {
        position: static;
        margin-left: 10px;
        width: auto;
        height: auto;
        background-color: transparent;
        content: '+';
        font-size: 20px;
        transition: transform 0.3s;
    }
    
    .footer-heading.active::after {
        transform: rotate(45deg);
        background-color: transparent;
    }
    
    .footer-links {
        display: none;
        padding-top: 10px;
    }
    
    .footer-links.active {
        display: block;
    }
    
    .newsletter-form form {
        flex-direction: column;
    }
    
    .footer-bottom .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 20px 0;
    width: 100%;
}