* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  overflow-x: hidden;
}

.container {
  display: flex;
  min-height: 100vh;
}

/* Partie gauche */
.left-section {
  width: 55%;
  background: #769BDE;
  padding: 80px 40px 40px 100px;
  position: relative;
  display: flex;
  color: #fff;
  flex-direction: column;
}

.logo {
  max-width: 300px;
  margin-bottom: 40px;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 120px;
}

h1 {
  font-size: 5.5rem;
  line-height: 5.5rem;
  margin-bottom: 40px;
  font-weight: 700;
}

.subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  font-weight: 600;
}

.baseline {
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 600;
}

p.baseline {
  margin-bottom: 40px;
}

.address {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Partie droite */
.right-section {
  width: 45%;
  background: #ddd;
}

.right-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Version mobile */
@media (max-width: 768px) {
  .container {
      flex-direction: column;
  }

  .left-section, .right-section {
      width: 100%;
  }

  .right-section {
      display: none;
  }

  .left-section {
      padding: 30px 25px;
      min-height: 100vh;
  }

  .logo {
      max-width: 150px;
      margin-bottom: 30px;
  }

  h1 {
      font-size: 2.5rem;
      line-height: 2.5rem;
  }

  .subtitle {
      font-size: 1.2rem;
  }


  .baseline {
      font-size: 1.4rem;
  }

  p.baseline {
    margin-bottom: 5px;
  }

  .mobile-image {
      display: block !important;
      width: 100%;
      max-height: 40vh;
      margin: 20px 0;
      order: 2;
  }

  .mobile-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .content {
      order: 1;
  }

  .address {
      position: static;
      margin-top: auto;
      padding-top: 30px;
  }
}

/* Image mobile */
.mobile-image {
  display: none;
}