/* Newsletter Styles */
.footer-newsletter {
    text-align: center;
    padding: 40px 20px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    color: rgb(81, 29, 39);
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.newsletter-description {
    color: rgb(81, 29, 39);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.newsletter-form {
    margin-bottom: 15px;
}

.newsletter-input-group {
    display: flex;
    justify-content: center;
    align-items: stretch;
    max-width: 400px;
    margin: 0 auto;
    border: 1px solid rgb(81, 29, 39);
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    outline: none;
    font-size: 14px;
    background-color: white;
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-button {
    background-color: rgb(81, 29, 39);
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-button:hover {
    background-color: rgb(165, 154, 156);
}

.newsletter-consent {
    margin-top: 15px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.consent-text {
    color: rgb(81, 29, 39);
    font-size: 12px;
    line-height: 1.4;
    margin: 0;
    text-align: center;
}

.privacy-link {
    color: rgb(81, 29, 39);
    text-decoration: underline;
}

.privacy-link:hover {
    color: rgb(165, 154, 156);
}

/* Responsive Newsletter Styles */
@media (max-width: 768px) {
    .footer-newsletter {
        padding: 30px 15px 15px;
    }

    .newsletter-title {
        font-size: 20px;
    }

    .newsletter-input-group {
        flex-direction: column;
        max-width: 300px;
    }

    .newsletter-input {
        margin-bottom: 0;
    }

    .newsletter-button {
        border-top: none;
        padding: 12px;
    }

    .consent-text {
        font-size: 11px;
    }
}