body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
  }
  
  .site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #fff;
    border-bottom: 1px solid #ccc;
  }
  
  .site-header .logo img {
    max-height: 100px; /* Ajuste la hauteur des logos selon tes besoins */
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    box-sizing: border-box;
  }
  
  .top-section {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
  }
  
  .top-section .text-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .top-section .text-container h1 {
    font-size: 2.5em;
    margin: 0;
    color: #333;
  }
  
  .button {
    padding: 15px 30px;
    background-color: #6b7278;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1em;
    margin-top: 20px;
    transition: background-color 0.3s ease;
  }
  
  .button:hover {
    background-color: #555;
  }
  
  .top-section .photo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }
  
  .top-section .photo img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    max-height: 500px; /* Limite la hauteur de l'image pour éviter qu'elle ne soit trop grande */
    object-fit: cover; /* Assure que l'image couvre tout l'espace disponible */
  }
  
  .bottom-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .bottom-section .item {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .bottom-section .item h2 {
    margin-top: 0;
    color: #333;
  }
  
  .bottom-section .item p {
    margin: 10px 0 0;
    color: #666;
  }
  
  /* Styles pour le formulaire de contact */
  #contact-form-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 90%;
    max-width: 500px;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;	
  }

  #contact-form-container.hidden {
    opacity: 0;
    visibility: hidden;
  }
  
  #contact-form-container h2 {
    margin-top: 0;
  }
  
  #contact-form label {
    display: block;
    margin-top: 10px;
  }
  
  #contact-form input, #contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  #contact-form button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #6b7278;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  #contact-form button:hover {
    background-color: #555;
  }
  
  #close-form {
    background: none;
    border: none;
    color: #6b7278;
    cursor: pointer;
    margin-top: 10px;
    font-size: 1em;
  }
  
  #close-form:hover {
    text-decoration: underline;
  }

  
  /* Media Query for smaller screens */
  @media (max-width: 767px) {
    .bottom-section {
        grid-template-columns: 1fr;
    }
  
    .top-section {
        flex-direction: column;
    }
  }
  
  /* Media Query for larger screens */
  @media (min-width: 768px) {
    .top-section {
        flex-direction: row;
    }
  
    .top-section .text-container {
        width: 40%;
        margin-bottom: 0;
    }
  
    .top-section .photo {
        width: 60%;
        margin-top: 0;
        margin-left: 20px;
    }
  }
  
  .alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
  }
  
  .alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
  }
  
  .alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
  }
  
