/* ========= MODIFICA LARGHEZZA ========= */
    /* La larghezza massima è ora 900px su desktop, ma rimane responsive. */
    .form-container {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
        max-width: 900px; /* Aumentato da 700px */
        margin: 40px auto;
        padding: 30px;
        background-color: #f9f9f9;
        border: 1px solid #ddd;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }
    .form-container h2 {
        text-align: center;
        color: #333;
        margin-bottom: 10px;
    }
    .form-container .form-subtitle {
        text-align: center;
        color: #666;
        margin-bottom: 25px;
    }
    .quote-form {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }
    .quote-form input[type="text"],
    .quote-form input[type="email"],
    .quote-form input[type="tel"],
    .quote-form textarea {
        padding: 14px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 16px;
        width: 100%;
        box-sizing: border-box;
    }
    .quote-form input:focus,
    .quote-form textarea:focus {
        border-color: #c00;
        outline: none;
        box-shadow: 0 0 5px rgba(192, 0, 0, 0.2);
    }
    .quote-form .submit-button {
        background-color: #c00;
        color: white;
        padding: 16px;
        border: none;
        border-radius: 5px;
        font-size: 18px;
        font-weight: bold;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    .quote-form .submit-button:hover {
        background-color: #a00;
    }
    .contact-options-section {
        text-align: center;
        margin-top: 25px;
        padding-top: 20px;
        border-top: 1px solid #eee;
    }
    .contact-options-section p {
        margin-bottom: 15px;
        color: #555;
        font-weight: bold;
    }
    .whatsapp-button {
        background-color: #25D366;
        color: white;
        padding: 12px 25px;
        border-radius: 50px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        font-weight: bold;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }
    .whatsapp-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }
    .whatsapp-button svg {
        width: 24px;
        height: 24px;
    }
    
    /* ========= NUOVI STILI PER LA SEZIONE TELEFONO ========= */
    .phone-section {
        margin-top: 25px;
        color: #444;
        font-size: 16px;
    }
    .phone-section a {
        color: #c00;
        font-weight: bold;
        text-decoration: none;
    }
    .phone-section a:hover {
        text-decoration: underline;
    }

    @media (max-width: 900px) { /* Media query per la responsività */
        .form-container {
            margin-left: 20px;
            margin-right: 20px;
            padding: 20px;
        }
    }