/* Newsletter Page Styles */
.newsletter_hero {
    text-align: center;
    padding: 40px 20px;
    background-color: #111;
    margin-bottom: 40px;
}

.newsletter_hero h1 {
    font-size: 42px;
    color: #0076FF;
    margin-bottom: 10px;
}

.newsletter_hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.newsletter_container {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.newsletter_content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.newsletter_left {
    flex: 1;
    min-width: 300px;
}

.newsletter_right {
    flex: 1;
    min-width: 300px;
}

.newsletter_benefits h2 {
    color: #0076FF;
    margin-bottom: 30px;
    font-size: 28px;
}

.newsletter_benefits_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.newsletter_benefits_list li {
    display: flex;
    gap: 15px;
}

.benefit_icon {
    background-color: rgba(0, 118, 255, 0.1);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit_text {
    flex-grow: 1;
}

.benefit_text h3 {
    margin: 0 0 5px;
    font-size: 18px;
}

.benefit_text p {
    margin: 0;
    font-weight: 400;
    color: #CCC;
    font-size: 16px;
}

.signup_form_container {
    background-color: #111;
    border-radius: 10px;
    padding: 30px;
}

.signup_form_container h2 {
    color: #0076FF;
    margin-bottom: 10px;
    font-size: 28px;
}

.signup_form_container > p {
    margin-bottom: 25px;
    font-weight: 400;
    color: #CCC;
}

.newsletter_form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form_group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form_group label {
    font-size: 16px;
}

.form_group input[type="email"],
.form_group input[type="text"] {
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid #333;
    background-color: #000;
    font-size: 16px;
    color: white;
    transition: all 0.3s ease;
}

.form_group input[type="email"]:focus,
.form_group input[type="text"]:focus {
    outline: none;
    border-color: #0076FF;
    box-shadow: 0 0 0 2px rgba(0, 118, 255, 0.2);
}

.checkbox_group,
.radio_group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.checkbox_item,
.radio_item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox_item input[type="checkbox"],
.radio_item input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    background-color: #000;
    border: 1px solid #333;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox_item input[type="checkbox"] {
    border-radius: 4px;
}

.radio_item input[type="radio"] {
    border-radius: 50%;
}

.checkbox_item input[type="checkbox"]:checked,
.radio_item input[type="radio"]:checked {
    border-color: #0076FF;
    background-color: #0076FF;
}

.checkbox_item input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 10px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    top: 3px;
    left: 7px;
    transform: rotate(45deg);
}

.radio_item input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background-color: white;
    top: 4px;
    left: 4px;
}

.checkbox_item label,
.radio_item label {
    font-weight: 400;
    cursor: pointer;
}

.consent_checkbox {
    margin-top: 10px;
}

.consent_checkbox label {
    font-size: 14px;
    font-weight: 400;
    color: #AAA;
}

.consent_checkbox a {
    color: #0076FF;
    text-decoration: none;
}

.consent_checkbox a:hover {
    text-decoration: underline;
}

.signup_button {
    background-color: #0076FF;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 12px 25px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.signup_button:hover {
    background-color: #0066dd;
    transform: translateY(-2px);
}

.signup_button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 118, 255, 0.3);
}

.form_success,
.form_error {
    text-align: center;
    padding: 30px 0;
    display: none;
}

.form_success box-icon,
.form_error box-icon {
    margin-bottom: 15px;
}

.form_success h3,
.form_error h3 {
    margin-bottom: 10px;
}

.form_success p,
.form_error p {
    margin-bottom: 20px;
    font-weight: 400;
}

.retry_button {
    background-color: #0076FF;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.retry_button:hover {
    background-color: #0066dd;
}

.newsletter_updates {
    background-color: #111;
    padding: 60px 20px;
    margin-bottom: 0;
}

.updates_container {
    max-width: 1200px;
    margin: 0 auto;
}

.updates_container h2 {
    color: #0076FF;
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
}

.updates_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.update_card {
    background-color: #000;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #222;
}

.update_card:hover {
    transform: translateY(-5px);
    border-color: #0076FF;
}

.update_icon {
    margin: 0 auto 15px;
    background-color: rgba(0, 118, 255, 0.1);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.update_card h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.update_card p {
    margin: 0;
    font-weight: 400;
    color: #CCC;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .newsletter_hero h1 {
        font-size: 32px;
    }
    
    .newsletter_content {
        flex-direction: column;
    }
    
    .checkbox_group,
    .radio_group {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .updates_grid {
        grid-template-columns: 1fr;
    }
}