/* ========== NEWSLETTER ========== */
.footer-newsletter {
    background: var(--white);
    padding: 60px 0;
    margin-top: 40px;
    text-align: center;
    border-top: 1px solid var(--border-color);
}
.footer-newsletter .footer-section-title {
    color: var(--secondary-color) !important;
}
.footer-newsletter p {
    color: var(--text-light);
}
.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.newsletter-input {
    padding: 12px 20px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    flex: 1;
    background: var(--light-gray);
}
.newsletter-button {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 0 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: var(--transition);
}
.newsletter-button:hover {
    background: var(--primary-color);
}

@media (max-width: 768px) {
    .newsletter-form { flex-direction: column; padding: 0 20px; }
}
