#quote-form {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(10,35,66,0.10);
    max-width: 440px;
    margin: 40px auto 0 auto;
    padding: 36px 32px 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    font-family: 'Inter', 'Roboto', Arial, sans-serif;
}

#quote-form legend {
    font-size: 1.6rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #0a2342;
    margin-bottom: 18px;
    text-align: center;
    letter-spacing: 0.01em;
}

#quote-form label {
    font-size: 1.05rem;
    font-weight: 500;
    color: #0a2342;
    margin-bottom: 4px;
    letter-spacing: 0.01em;
}

#quote-form input,
#quote-form select,
#quote-form textarea {
    font-family: inherit;
    font-size: 1rem;
    padding: 10px 12px;
    border: 1.5px solid #e0e4ea;
    border-radius: 6px;
    background: #f7f9fb;
    color: #222;
    margin-bottom: 8px;
    transition: border-color 0.18s;
    outline: none;
    resize: vertical;
}

#quote-form input:focus,
#quote-form select:focus,
#quote-form textarea:focus {
    border-color: #76aa94;
    background: #fff;
}

#quote-form button[type="submit"] {
    margin-top: 10px;
    background: #0a2342;
    color: #fff;
    font-family: 'Inter', 'Roboto', Arial, sans-serif;
    font-size: 1.08rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 12px 0;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
    box-shadow: 0 2px 8px rgba(10,35,66,0.10);
    letter-spacing: 0.01em;
}

#quote-form button[type="submit"]:hover,
#quote-form button[type="submit"]:focus {
    background: #ffd700;
    color: #0a2342;
    box-shadow: 0 4px 16px rgba(10,35,66,0.14);
    outline: none;
}

#get-quote-page {
    background: linear-gradient(to bottom, rgba(30,30,30,0.55) 0%, rgba(30,30,30,0.75) 100%),
        url('images/Crop600x400.jpeg') center center/cover no-repeat;
    padding-top: 40px;
    padding-bottom: 40px;
}

@media (max-width: 600px) {
    #quote-form {
        max-width: 98vw;
        padding: 18px 6vw 18px 6vw;
        gap: 12px;
    }
    #quote-form button[type="submit"] {
        font-size: 1rem;
        padding: 12px 0;
    }
}