
.newsletter {
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    margin-top:20px;
    padding-top: 15px;
    background-color: #fff;
    width:100%;
    max-width: 980px;
    margin: 0 auto;    

    h1, h2 {
        color: #000;
        padding:0;
    }

    h1{
        font-size: 32px;
        margin-top: 31px;
        margin-bottom: 10px;
    }
    
    

    p.instructions {
        color: #999;
        font-size: 0.9em;
        line-height: 1.4em;
    }
    
    p.lead {
        margin-bottom:20px;
    }

    .fields {
        margin-bottom: 20px;
        
    }
    
    .field{
        display:flex;
        gap:10px;
        align-items:center;
    }

    .field .label {
        width: 170px; /* Set a fixed width for labels */
        margin-right: 10px;
    }
    
    label {
        display: block;
        margin-bottom: 5px;
        
    }
    
    input[type="text"],
    input[type="email"],
    input[type="checkbox"],
    input[type="radio"] {
        margin-bottom: 10px;
    }
    
    input[type="text"],
    input[type="email"] {
        width: 300px;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
        box-sizing: border-box;
    }
    
    
    
    input[type="checkbox"] + label,
    input[type="radio"] + label {
        display: inline-block;
        margin-right: 20px;
        font-weight: normal;
    }
    
    h2 {
        margin-top: 20px;
        
        font-size: 1.2em;
    }
    
    /* Button Styles */
    button[type="submit"] {
        background: #af140c;
        border-radius: 3px;
        border: 0;
        color: #fff;
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 24px;
        display: inline-block;
        padding: 15px;
        width: 100%;
        transition: background .2s ease;
        cursor: pointer;
        padding: 15px 30px;
        margin-top: 10px;
        max-width: 300px;
    
    }
    
    button[type="submit"]:hover {
        background: #7f0e0a; /* New background color on hover */
    }
    
    }
    
    /* Mobile Styles */
    @media (max-width: 768px) {

        .newsletter {
            padding: 25px;
        }
    
        h1 {
            font-size: 1.5em;
        }
    
        h2 {
            font-size: 1.1em;
        }
    
        input[type="text"],
        input[type="email"] {
            padding: 8px;
        }
    
        input[type="checkbox"] + label,
        input[type="radio"] + label {
            margin-right: 10px;
        }
    
        .field{
            gap:10px;
        }
    
        .field.personal{
            flex-direction:column;
            gap:10px;
            align-items: flex-start;
        }
    }