/* Global */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f9f9f9;
    color: #1c1c4c;
    line-height: 1.6;
  }
  
  a {
    color: #1c1c4c;
    text-decoration: none;
  }
  
  .container {
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
  }
  
  /* Header */
  .hero {
    background-color: #1c1c4c;
    color: white;
    text-align: center;
    padding: 80px 20px;
    position: relative;
  }
  
  .hero h1 {
    font-size: 2.8rem;
    color: #d4af37;
    margin-bottom: 10px;
  }
  
  .hero h2 {
    font-weight: 400;
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: auto;
  }

  .hero-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .hero-text {
    flex: 1;
    min-width: 250px;
  }
  
  .hero-photo {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    background-color: white;
    border-radius: 50%;
    border: 4px solid #d4af37;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  
  .hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }
  
  
  /* Sections */
  h2 {
    font-size: 2rem;
    color: #1c1c4c;
    margin-bottom: 20px;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 5px;
  }
  
  p, li {
    font-size: 1rem;
  }
  
  /* Expériences */
  .exp-card {
    background-color: white;
    border-left: 5px solid #d4af37;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  }
  
  .exp-card h3 {
    margin-top: 0;
    color: #1c1c4c;
  }
  
  /* Témoignages */
  .testimonials blockquote {
    font-style: italic;
    background: #fff;
    padding: 20px;
    margin: 20px 0;
    border-left: 5px solid #d4af37;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  }
  
  .testimonials cite {
    display: block;
    margin-top: 10px;
    text-align: right;
    font-weight: bold;
  }
  
  /* Certifications */
  .certifications ul {
    list-style-type: none;
    padding-left: 0;
  }
  
  .certifications li::before {
    content: '✔';
    color: #10b981;
    margin-right: 10px;
  }
  
  /* Footer */
  footer {
    text-align: center;
    background-color: #1c1c4c;
    color: white;
    padding: 20px 0;
    font-size: 0.9rem;
  }
  
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-photo {
    margin-bottom: 20px;
  }

  .hero-text {
    align-items: center;
  }

  .hero-text h1,
  .hero-text h2,
  .hero-text p {
    text-align: center;
  }
}

    
  }
  