.elgora-footer {
    background-color: #E6E6E6;
    color: #1E1E1E;
    padding: 80px 0 40px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Newsletter Section */
.footer-newsletter {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 40px;
}

.newsletter-content {
    flex: 1;
    max-width: 500px;
}

.newsletter-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1E1E1E;
}

.newsletter-content p {
    font-size: 16px;
    color: #4a4a4a;
    margin: 0;
}

.newsletter-form {
    flex: 1;
    max-width: 450px;
}

.newsletter-form form {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    background: #fff;
}

.newsletter-form button {
    background-color: #1E1E1E;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
    font-size: 14px;
}

.newsletter-form button:hover {
    opacity: 0.9;
}

.privacy-note {
    font-size: 12px;
    color: #666;
    margin: 0;
}

.privacy-note a {
    color: #1E1E1E;
    text-decoration: underline;
}

/* Divider */
.footer-divider {
    border: 0;
    border-top: 1px solid #d0d0d0;
    margin: 40px 0;
}

/* Links Section */
.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: none;
    color: #1E1E1E;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 14px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-column ul li a:hover {
    color: #000;
}

/* Social Links */
.social-links {
    padding: 0;
    margin: 0;
}

.social-links li a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links .icon {
    width: 20px;
    height: 20px;
    color: #1E1E1E;
}

/* Bottom Section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.footer-logo img {
    height: 24px;
    width: auto;
}

.footer-copyright p {
    font-size: 14px;
    color: #888;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .footer-newsletter {
        flex-direction: column;
        gap: 30px;
    }

    .newsletter-content,
    .newsletter-form {
        max-width: 100%;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-links {
        grid-template-columns: 1fr;
    }

    .newsletter-form form {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-container {
        padding: 0 20px;
    }
}