/* =========================
   ABOUT SECTION
========================= */

.about {
  background: #ffffff;
  padding: 80px 20px;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.about-content h2 {
  color: #0f4c81;
  font-size: 34px;
  margin-bottom: 20px;
}

.about-intro {
  font-weight: 500;
  margin-bottom: 15px;
  color: #1f1f1f;
}

.about-content p {
  color: #444;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-points {
  list-style: none;
  margin-bottom: 30px;
}

.about-points li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 15px;
  color: #0f4c81;
}

.about-points li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #00b09b;
}

/* =========================
   ABOUT BUTTONS
========================= */
.btn-about {
  background-color: #049795;
  color: #fff;
}

.btn-about:hover {
  background-color: #fff;
  color: #0f4c81;
}

/* CTA */
.about-cta {
  display: flex;
  gap: 15px;
}

/* VISUEL */
.about-image-wrapper {
  background: #f6f9fc;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 15px 35px rgba(15, 76, 129, 0.12);
}

.about-image-wrapper img {
  width: 100%;
  border-radius: 14px;
  display: block;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .about {
    width: 100%;
    padding: 60px 20px;
    box-sizing: border-box;
  }

  .about-container {
    max-width: 100%;
    width: 100%;
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0;
    box-sizing: border-box;
  }

  .about-content {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .about-points {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-points li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-left: 0;
  }

  .about-points li::before {
    position: static;
  }

  .about-cta {
    flex-direction: column;
    align-items: center;
  }

  .about-cta button {
    width: 100%;
    max-width: 280px;
  }

  .about-visual {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .about-image-wrapper {
    width: 100%;
    max-width: 100%;
    padding: 0;
    background: none;
    box-shadow: none;
    border-radius: 0;
    box-sizing: border-box;
  }

  .about-image-wrapper img {
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
    box-sizing: border-box;
  }
}

@media (max-width: 600px) {
  .about {
    width: 100%;
    padding: 40px 16px;
    box-sizing: border-box;
  }

  .about-container {
    max-width: 100%;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    min-width: 0;
  }

  .about-content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
    box-sizing: border-box;
  }

  .about-content h2 {
    font-size: 22px;
    word-wrap: break-word;
  }

  .about-content p,
  .about-intro {
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  .about-visual {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .about-image-wrapper {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  .about-image-wrapper img {
    width: 100%;
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .about-content h2 {
    font-size: 24px;
  }
}

