/* Styles pour la page contact */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/realisations/contact-hero.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: var(--white);
}

.expert-section {
    padding: 80px 0;
    background-color: var(--white);
}

.expert-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: center;
}

.expert-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.expert-image img {
    width: 100%;
    height: auto;
    display: block;
}

.expert-content {
    color: var(--secondary-gray);
}

.expert-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary-blue);
}

.expert-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: transform 0.3s, background-color 0.3s;
    margin-top: 20px;
}

.contact-button:hover {
    transform: translateY(-3px);
    background-color: #0052a3;
}

.expertise-list {
    margin: 30px 0;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.expertise-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.expertise-text {
    flex: 1;
}

.expertise-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--secondary-gray);
}

.expertise-text p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .expert-grid {
        grid-template-columns: 1fr;
    }

    .expert-content h2 {
        font-size: 2rem;
    }

    .contact-button {
        width: 100%;
        justify-content: center;
    }
}