@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f6fbff;
  color: #1f2d3d;
  line-height: 1.6;
}

/* ================= NAVIGATION ================= */

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px 20px;
  background: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-buttons {
  display: flex;
  gap: 18px;
}

.nav-btn {
  text-decoration: none;
  padding: 18px 34px;
  border-radius: 50px;
  background: #ffd60a;
  color: #1f2d3d;
  font-weight: 600;
  font-size: 1.05rem;
  transition: 0.3s;
}

.nav-btn:hover {
  background: #ffca00;
  transform: translateY(-2px);
}

/* ================= HERO ================= */

.hero {
  text-align: center;
  padding: 100px 20px 90px;
  background: linear-gradient(135deg, #7ecbff, #cfefff);
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #003b66;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 25px;
  color: #003b66;
}

.hero-text {
  font-size: 1.05rem;
  margin-bottom: 40px;
}

/* ================= BUTTON ================= */

.btn {
  display: inline-block;
  padding: 20px 54px;
  background: #ffd60a;
  color: #1f2d3d;
  font-weight: 600;
  text-decoration: none;
  border-radius: 60px;
  font-size: 1.1rem;
  transition: 0.3s;
}

.btn:hover {
  background: #ffca00;
  transform: translateY(-2px);
}

/* ================= SECTIONS ================= */

section {
  max-width: 1100px;
  margin: auto;
  padding: 80px 20px;
}

section h2 {
  font-size: 1.9rem;
  margin-bottom: 25px;
  color: #0077b6;
}

section p {
  font-size: 1.05rem;
  margin-bottom: 15px;
}

/* ================= LISTS ================= */

ul {
  list-style: none;
  margin-top: 25px;
}

ul li {
  background: white;
  margin-bottom: 14px;
  padding: 18px 24px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.07);
  border-left: 6px solid #ffd60a;
}

/* ================= FORM ================= */

form {
  max-width: 720px;
  margin: 40px auto 0;
  background: white;
  padding: 45px;
  border-radius: 35px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

input,
textarea {
  width: 100%;
  padding: 20px 26px;
  margin-bottom: 22px;
  border-radius: 45px;
  border: 2px solid #cfefff;
  font-size: 1.05rem;
  font-family: 'Poppins', sans-serif;
}

textarea {
  min-height: 170px;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #7ecbff;
}

/* ================= FOOTER ================= */

footer {
  background: #003b66;
  color: white;
  text-align: center;
  padding: 40px 20px;
  font-size: 0.9rem;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .hero h1 {
    font-size: 2.4rem;
  }

  .nav-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }
}


/* ================= SERVICES & PRICES LIST ================= */

.services-list,
.prices-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
}

.services-list li,
.prices-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: white;
  margin: 18px auto;
  padding: 22px 32px;
  border-radius: 22px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.07);
  border-left: 6px solid #ffd60a;
  font-size: 1.05rem;
}

/* Centrage du texte */
.services-list li span,
.prices-list li span {
  flex: 1;
  text-align: left;
}

/* Responsive */
@media (max-width: 700px) {
  .services-list li,
  .prices-list li {
    flex-direction: column;
    text-align: center;
  }

  .services-list li span,
  .prices-list li span {
    text-align: center;
  }
}
