:root {
    --lightBlue: #6dc6d4;
    --purple: #764796;
    --hoverBlue: #5ab9c3;
    --textDark: #333;
    --textGray: #555;
    --blue: #212C56;
    --gradient: linear-gradient(90deg, var(--lightBlue), var(--purple));
}

.support-section {
    padding: 30px 15px;
    background-color: #fff;
    border-radius: 12px;
    max-width: 100%;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.support-section h2,
.support-section .title {
    font-size: 2rem;
    color: var(--blue);
    border-bottom: 2px solid var(--lightBlue);
    padding-bottom: 10px;
    margin-bottom: 25px;
    font-weight: 600;
    text-align: center;
}

.support-note {
    font-size: 1.15rem;
    color: var(--textGray);
    margin-bottom: 25px;
    text-align: center;
}

.support-note a {
    color: var(--lightBlue);
    text-decoration: underline;
    font-weight: 500;
}

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

.support-form .styled-label {
    display: block;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--blue);
}

.support-form .styled-input,
.support-form textarea {
    padding: 14px 16px;
    font-size: 1.15rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #fdfdfd;
    width: 100%;
    transition: border 0.3s, box-shadow 0.3s;
}

.support-form .styled-input:focus,
.support-form textarea:focus {
    border-color: var(--lightBlue);
    box-shadow: 0 0 5px rgba(109, 198, 212, 0.3);
    outline: none;
}

#btn-form {
    background: var(--gradient);
    color: white;
    padding: 14px 28px;
    font-size: 1.2rem;
    border: none;
    border-radius: 30px;
    margin-top: 15px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    width: 100%;
}

#btn-form:hover {
    background: var(--hoverBlue);
    transform: scale(1.03);
}

.infoline {
    margin-top: 30px;
    padding: 20px;
    background-color: #f0f9fb;
    border-left: 4px solid var(--lightBlue);
    border-radius: 8px;
    text-align: left;
}

.infoline p {
    font-size: 1.15rem;
    color: var(--blue);
    margin: 8px 0;
}

.whatsapp-container a {
    background: var(--gradient);
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.15rem;
    margin-top: 10px;
}

.whatsapp-container a:hover {
    background-color: var(--hoverBlue);
}

/* FAQ & Infos bloc mobile-first */
.support-extra {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.faq-block,
.support-info-block {
    background-color: #fdfdfd;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-block h3,
.support-info-block h3 {
    font-size: 1.6rem;
    color: var(--blue);
    margin-bottom: 15px;
}

.faq-block ul {
    list-style: none;
    padding: 0;
}

.faq-block li {
    margin-bottom: 15px;
    font-size: 1.15rem;
    color: var(--textGray);
}

.support-info-block p,
.support-info-block li {
    font-size: 1.15rem;
    color: var(--textDark);
    margin-bottom: 8px;
}

/* Carte Google Maps */
#map {
    height: 250px;
    width: 100%;
    border-radius: 12px;
    margin: 30px 0;
}

/* --- Responsive (Tablet & Desktop) --- */
@media (min-width: 768px) {
    .support-section {
        padding: 50px 30px;
        max-width: 800px;
    }

    .support-section h2,
    .support-section .title {
        font-size: 2.2rem;
    }

    .support-note {
        font-size: 1.2rem;
    }

    .support-form .styled-label {
        font-size: 1.25rem;
    }

    .support-form .styled-input,
    .support-form textarea {
        font-size: 1.2rem;
    }

    #btn-form {
        font-size: 1.2rem;
        width: auto;
    }

    .support-extra {
        flex-direction: row;
    }

    .faq-block,
    .support-info-block {
        flex: 1;
        font-size: 1.2rem;
    }

    #map {
        height: 300px;
    }
}
