.elementor-1484 .elementor-element.elementor-element-9a0194e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget .tippy-tooltip .tippy-content{text-align:center;}/* Start custom CSS for html, class: .elementor-element-2f513c9 *//* Reset de base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5f7fa;
  color: #333;
  line-height: 1.7;
  padding: 40px 20px;
}

/* Section principale */
.speech-section {
  max-width: 1000px;
  margin: auto;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  animation: fadeIn 1.2s ease;
}

/* Titre principal */
.speech-title {
  text-align: center;
  font-size: 2.5rem;
  color: #4a3e2d;
  margin-bottom: 40px;
  animation: slideDown 1s ease;
}

/* Encadré du directeur */
.director-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  animation: fadeInLeft 1s ease;
}

.director-photo {
  flex: 1 1 200px;
  max-width: 200px;
}

.director-photo img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.director-info {
  flex: 2 1 300px;
}

.director-info h3 {
  font-size: 1.6rem;
  color: #d8cba3;
  margin-bottom: 8px;
}

.director-info p {
  font-size: 1rem;
  color: #4a3e2d;
}

/* Contenu du discours */
.speech-content p {
  margin-bottom: 16px;
  text-align: justify;
}

.speech-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.speech-content ul li {
  margin-bottom: 10px;
  list-style: disc;
}

/* Sous-titres */
.speech-content h2 {
  font-size: 1.4rem;
  color: #4a3e2d;
  margin: 30px 0 16px;
  border-left: 4px solid #4a3e2d;
  padding-left: 12px;
}

/* Animations */
@keyframes fadeIn {
  0% { opacity: 0; transform: scale(0.98); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes slideDown {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  0% { opacity: 0; transform: translateX(-30px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .director-box {
    flex-direction: column;
    text-align: center;
  }

  .director-info h3 {
    margin-top: 10px;
  }
}/* End custom CSS */