/* Reset simple */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  background: #fefefe;
  color: #222;
  line-height: 1.6;
  padding: 20px;
  max-width: 960px;
  margin: auto;
}

/* Header */
header {
  text-align: center;
  margin-bottom: 40px;
}

header h1 {
  font-weight: 700;
  font-size: 2.5rem;
  color: #2a5d2a;
  margin-bottom: 10px;
}

header p {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

/* Section titles */
section h2 {
  font-weight: 700;
  font-size: 2rem;
  color: #1f4d1f;
  border-bottom: 3px solid #2a5d2a;
  padding-bottom: 8px;
  margin-bottom: 20px;
}

/* Service / Rituel / Produit Container */
.service,
.product {
  display: flex;
  background: #e6f0e6;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease;
}

.service:hover,
.product:hover {
  background: #d1e6d1;
}

/* Icon container */
.service-icon,
.product-icon {
  flex-shrink: 0;
  font-size: 3rem;
  color: #2a5d2a;
  width: 60px;
  height: 60px;
  background: #d9ead3;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  box-shadow: 0 0 8px rgba(42,93,42,0.4);
}

/* Description */
.service-description,
.product-description {
  flex-grow: 1;
}

.service-description h3,
.product-description h3 {
  font-weight: 700;
  font-size: 1.5rem;
  color: #244d24;
  margin-bottom: 10px;
}

.service-description p,
.product-description p {
  margin-bottom: 10px;
  color: #333;
  font-size: 1rem;
}

/* Button */
.btn {
  display: inline-block;
  background-color: #2a5d2a;
  color: white;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.25s ease;
  box-shadow: 0 3px 6px rgba(42,93,42,0.5);
}

.btn:hover,
.btn:focus {
  background-color: #1f4d1f;
  box-shadow: 0 5px 10px rgba(31,77,31,0.7);
  outline: none;
}

/* Rituel list */
#rituels ul {
  list-style-type: disc;
  padding-left: 20px;
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

#rituels ul li {
  margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 700px) {
  .service,
  .product {
    flex-direction: column;
    text-align: center;
  }

  .service-icon,
  .product-icon {
    margin-right: 0;
    margin-bottom: 12px;
  }
}
