/* Section */
.about {
  background: #fff;
  padding: 60px 20px;
}

/* Container grid */
.about .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

/* Texte */
.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #111;
}

.about-text p {
  margin-bottom: 15px;
  color: #555;
  line-height: 1.6;
}

.about-text .btn {
  display: inline-block;
  background: #0066cc;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s;
}

.about-text .btn:hover {
  background: #004a99;
}

/* Image */
.about-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Responsive : deux colonnes à partir de 768px */
@media (min-width: 768px) {
  .about .container {
    grid-template-columns: 1fr 1fr;
  }
}
