/* Styles pour la page À Propos de Nous (Segmenté dans assets/css/a-propos.css) */

.intex-about-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 60px;
    color: #374151;
    font-family: inherit;
}

/* Hero Section */
.intex-about-hero {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 16px;
    margin-bottom: 40px;
    border: 1px solid #bae6fd;
}

.intex-about-hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: #1c90a1;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 20px;
    margin-bottom: 16px;
}

.intex-about-hero h1 {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.intex-about-hero p {
    font-size: 18px;
    color: #475569;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid Layout for Cards */
.intex-about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .intex-about-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.intex-about-card {
    background-color: #ffffff;
    border-radius: 14px;
    padding: 32px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.intex-about-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.intex-about-card-icon {
    width: 48px;
    height: 48px;
    background-color: #f0f9ff;
    color: #1c90a1;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.intex-about-card-icon svg {
    width: 26px;
    height: 26px;
}

.intex-about-card h2 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 16px;
}

.intex-about-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563;
    margin: 0 0 14px;
}

.intex-about-card p:last-child {
    margin-bottom: 0;
}

/* Engagements List */
.intex-about-commitments {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.intex-about-commitments li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 12px;
}

.intex-about-commitments li:last-child {
    margin-bottom: 0;
}

.intex-about-commitments .check-icon {
    width: 20px;
    height: 20px;
    background-color: #dcfce7;
    color: #15803d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.intex-about-commitments .check-icon svg {
    width: 12px;
    height: 12px;
}

/* Legal & Contact Info Section */
.intex-about-details-box {
    background-color: #f8fafc;
    border-radius: 14px;
    padding: 32px;
    border: 1px solid #e2e8f0;
    margin-bottom: 40px;
}

.intex-about-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}

@media (min-width: 640px) {
    .intex-about-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.intex-detail-item {
    background: #ffffff;
    padding: 16px 20px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.intex-detail-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    margin-bottom: 4px;
}

.intex-detail-value {
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    word-break: break-word;
}

/* Customer Service Banner */
.intex-about-support-banner {
    background: linear-gradient(135deg, #1c90a1 0%, #0f766e 100%);
    color: #ffffff;
    border-radius: 14px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .intex-about-support-banner {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }
}

.intex-about-support-content h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px;
}

.intex-about-support-content p {
    color: #e0f2fe;
    font-size: 15px;
    margin: 0;
}

.intex-about-support-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
}
