    /* footer.css */
    .si-footer {
        background: linear-gradient(to right, #0B4619, #42855B);
        color: #ffffff;
        padding: 50px 0 20px;
        margin-top: 50px;
        position: relative;
        overflow: hidden;
        font-family: Arial, sans-serif;
    }
    
    .si-footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(to right, #90B77D, #42855B);
    }
    
    .si-footer-container {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
        padding: 0 40px;
        gap: 40px;
    }
    
    .si-footer-section {
        min-width: auto;
    }
    
    .si-footer-section h3 {
        color: #90B77D;
        font-size: 1.6rem;
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 12px;
        font-weight: 600;
    }
    
    .si-footer-section h3::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 60px;
        height: 3px;
        background: #90B77D;
    }
    
    .si-footer-section p {
        color: #e0e0e0;
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 20px;
    }
    
    .si-footer-links {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .si-footer-links a {
        color: #e0e0e0;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
        position: relative;
        font-size: 1rem;
        padding-left: 20px;
    }
    
    .si-footer-links a::before {
        content: '→';
        position: absolute;
        left: 0;
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .si-footer-links a:hover {
        color: #90B77D;
        transform: translateX(5px);
    }
    
    .si-footer-links a:hover::before {
        opacity: 1;
    }
    
    .si-social-icons {
        display: flex;
        gap: 20px;
    }
    
    .si-social-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
        transition: all 0.3s ease;
        text-decoration: none;
        position: relative;
        overflow: hidden;
    }
    
    .si-social-icon svg {
        width: 24px;
        height: 24px;
        transition: all 0.3s ease;
    }
    
    .si-social-icon::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(144, 183, 125, 0.2);
        transform: scale(0);
        transition: transform 0.3s ease;
        border-radius: 50%;
    }
    
    .si-social-icon:hover::before {
        transform: scale(1);
    }
    
    .si-social-icon:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(144, 183, 125, 0.3);
    }
    
    .si-social-icon.instagram:hover {
        background: #E1306C;
    }
    
    .si-social-icon.facebook:hover {
        background: #4267B2;
    }
    
    .si-social-icon.whatsapp:hover {
        background: #25D366;
    }
    
    .si-social-icon:hover svg {
        transform: scale(1.1);
    }
    
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-item {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #e0e0e0;
    }
    
    .contact-item svg {
        width: 20px;
        height: 20px;
        color: #90B77D;
    }
    
    .si-footer-bottom {
        text-align: center;
        margin-top: 50px;
        padding-top: 25px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .si-footer-bottom p {
        color: #90B77D;
        font-size: 1rem;
        margin: 0;
        text-align: center;
    }
    
    /* Responsive Design */
    @media (max-width: 1024px) {
        .si-footer-container {
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            padding: 0 30px;
        }
        
        .si-footer-section {
            padding-right: 15px;
        }
    
        .si-footer-section h3 {
            font-size: 1.4rem;
        }
    }
    
    @media (max-width: 768px) {
        .si-footer-container {
            grid-template-columns: 1fr;
            gap: 25px;
            padding: 0 25px;
        }
    
        .si-footer-section {
            padding-right: 0;
        }
    
        .si-social-icons {
            justify-content: flex-start;
        }
    
        .si-footer-section h3 {
            font-size: 1.3rem;
        }
    
        .si-footer-section h3::after {
            width: 50px;
        }
    
        .contact-info {
            margin-top: 10px;
        }
    }
    
    @media (max-width: 480px) {
        .si-footer {
            padding: 40px 0 20px;
        }
    
        .si-footer-container {
            gap: 20px;
            padding: 0 20px;
        }
    
        .si-footer-section h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
        }
    
        .si-footer-section p,
        .si-footer-links a {
            font-size: 0.95rem;
        }
    
        .si-social-icon {
            width: 45px;
            height: 45px;
        }
    
        .si-social-icon svg {
            width: 22px;
            height: 22px;
        }
    
        .si-footer-bottom {
            margin-top: 40px;
        }
    
        .si-footer-bottom p {
            font-size: 0.9rem;
        }
    
        .contact-info {
            gap: 10px;
        }
    
        .contact-item {
            font-size: 0.9rem;
        }
    }