/* Styles pour l'intégration Calendly */

.calendly-container {
    width: 100%;
    height: 700px;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(212, 175, 55, 0.1);
    margin-bottom: 2rem;
}

.calendly-inline-widget {
    min-width: 320px;
    height: 700px;
}

/* Style pour la section contact avec Calendly */
.contact-section-calendly .contact-container {
    display: flex;
    flex-direction: column;
}

.contact-section-calendly .contact-info {
    margin-top: 2rem;
    padding: 2rem;
    background-color: var(--card-bg);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-section-calendly .section-description {
    margin-bottom: 2rem;
}

/* Styles responsifs */
@media (max-width: 768px) {
    .calendly-container {
        height: 600px;
    }
    
    .calendly-inline-widget {
        height: 600px;
    }
}

@media (max-width: 480px) {
    .calendly-container {
        height: 550px;
    }
    
    .calendly-inline-widget {
        height: 550px;
    }
}
