/* Correction du décalage dans la section de contact */

.contact-content {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    border-radius: 10px;
    background-color: #f8f9fa;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.info-icon {
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e9f0ff;
    border-radius: 50%;
    color: #2563eb;
}

.info-text {
    flex: 1;
}

.info-text h4 {
    margin: 0 0 5px 0;
    font-size: 18px;
}

.info-text p {
    margin: 0;
    color: #6b7280;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    justify-content: center;
    width: 100%;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #2563eb;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    background-color: #1d4ed8;
}

.contact-form {
    flex: 1.5;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Responsive design */
@media (max-width: 992px) {
    .contact-content {
        flex-direction: column;
    }
    
    .contact-info {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .info-item {
        padding: 15px 0;
    }
    
    .contact-info, .contact-form {
        padding: 20px;
    }
}
