/* Newsletter Styles */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Lexend:wght@300;400;500;600&display=swap');

body {
    background-color: #4f3960;
    margin: 0;
    padding: 0;
}

.newsletter-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 40px;
    text-align: center;
    font-family: 'Lexend', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.newsletter-heading {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

.newsletter-subheading {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.6;
}

.newsletter-message {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-form {
    text-align: left;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.newsletter-form .form-group {
    margin-bottom: 20px;
}

.newsletter-form label {
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    display: block;
    font-family: 'Lexend', sans-serif;
}

.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

.newsletter-form .help-text {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
    display: block;
}

.newsletter-optin {
    margin: 20px 0;
    text-align: left;
}

.newsletter-optin input[type="checkbox"] {
    margin-right: 8px;
}

.newsletter-optin label {
    font-size: 14px;
    color: #333;
    font-weight: normal;
}

.newsletter-unsubscribe-note {
    font-size: 13px;
    color: #ffffff;
    margin-top: 10px;
    text-align: center;
}

.newsletter-submit-btn {
    width: 100%;
    padding: 14px;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
}

.newsletter-submit-btn:hover {
    opacity: 0.9;
}

.newsletter-submit-btn.subscribe {
    background-color: #007bff;
}

.newsletter-submit-btn.subscribe:hover {
    background-color: #0056b3;
}

.newsletter-submit-btn.unsubscribe {
    background-color: #dc3545;
}

.newsletter-submit-btn.unsubscribe:hover {
    background-color: #c82333;
}

.newsletter-messages {
    margin-bottom: 20px;
}

.newsletter-confirmation-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 16px;
    font-weight: 600;
}

.newsletter-info-message {
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    color: #0c5460;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 16px;
}

.newsletter-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 16px;
    font-weight: 600;
}

.newsletter-success .newsletter-message {
    color: #155724;
}

.newsletter-info {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 16px;
    font-weight: 600;
}

.newsletter-info .newsletter-message {
    color: #155724;
}

