body {
  margin: 0;
  font-family: Arial;
  background: #f5f5f5;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background: white;
}

.navbar a {
  margin: 0 10px;
  cursor: pointer;
}

.btn {
  background: #164595;
  color: white;
  padding: 10px 20px;
  border: none;
}
.cta{
  background: #164595;
  height: 80px;
 border: none;;
  width: 120px;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
}

.hero h1 {
  font-size: 48px;
}

.hero-img {
  width: 50%;
}

/* ABOUT */
.about {
  display: flex;
  gap: 40px;
}

.about img {
  width: 50%;
}

/* SERVICES */
.services {
  text-align: center;
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.card {
  background: linear-gradient(135deg, #777, #aaa);
  height: 200px;
  padding: 20px;
  color: white;
  transition: 0.4s;
}

.card:hover {
  transform: translateY(-10px) scale(1.05);
}

/* IMAGE FULL */
.full-image {
  height: 100vh; /* ou la hauteur souhaitée */
  background: url("images/image3.png") center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.6);
}

.full-image h2 {
  position: relative;
}

/* AVIS */
.avis {
  text-align: center;
  padding: 80px;
}

.stars {
  color: gold;
  font-size: 20px;
}

/* FOOTER */
.footer {
  background: #1f4aa8;
  color: white;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
}

.footer-bottom {
  text-align: center;
  padding: 20px;
}


/* style text */

.hero h1 {
  background: linear-gradient(90deg, #000, #2d5cff);
  -webkit-background-clip: text;
  color: transparent;
}
