/* Footer Styles */
.footer-section {
    background-color: #f9f671;
    padding: 60px 0 20px;
    color: #000;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Left Section */
.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    width: 180px;
    height: auto;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 1.1rem;
    line-height: 1.5;
}

.footer-tagline em {
    color: #9eb873;
    font-style: italic;
}

/* Center Section */
.footer-center {
    text-align: center;
}

.footer-cta {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #9eb873;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin: 15px 0;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-links li:hover {
    color: #9eb873;
}

/* Right Section */
.footer-right {
    text-align: right;
}

.footer-social-text {
    margin: 15px 0;
    font-size: 0.9rem;
}

.footer-social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 2px solid #9eb873;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #9eb873;
    transform: translateY(-3px);
}

/* Bottom Section */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-left {
        align-items: center;
    }

    .footer-right {
        text-align: center;
    }

    .footer-social-icons {
        justify-content: center;
    }
}

/* New responsive footer styles */
@media (max-width: 768px) {
    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .footer-links li {
        margin: 0;
    }
}

@media (max-width: 576px) {
    .footer-container {
        padding: 0 15px;
        gap: 30px;
    }
    
    .footer-logo {
        width: 150px;
    }
    
    .footer-tagline {
        font-size: 1rem;
    }
}