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

body {
  background: #faf8f5;
  font-family: 'Lato', sans-serif;
  color: #2c2c2c;
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

.card {
  background: #ffffff;
  max-width: 600px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 60px rgba(0,0,0,0.08);
}

/* HEADER */
.header {
  background: linear-gradient(135deg, #6b9e8f 0%, #4a7c6f 60%, #3a6358 100%);
  padding: 50px 40px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.header::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.header::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 150px; height: 150px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.header .icon-main {
  font-size: 52px;
  display: block;
  margin-bottom: 16px;
}

.header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.3;
  position: relative;
}

.header h1 em {
  font-style: italic;
  font-weight: 400;
  color: #c8e6de;
}

.header .subtitle {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 10px;
}

/* INTRO */
.intro {
  padding: 36px 40px 28px;
  border-bottom: 1px solid #f0ece6;
}

.intro p {
  font-size: 15.5px;
  line-height: 1.8;
  color: #444;
  font-weight: 300;
}

.intro strong {
  color: #4a7c6f;
  font-weight: 700;
}

/* SECTIONS */
.section {
  padding: 28px 40px;
  border-bottom: 1px solid #f0ece6;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.section-icon {
  font-size: 36px;
  flex-shrink: 0;
  margin-top: 2px;
}

.section-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: #3a6358;
  margin-bottom: 8px;
  font-weight: 600;
}

.section-body p {
  font-size: 14.5px;
  line-height: 1.75;
  color: #555;
  font-weight: 300;
}

.tag {
  display: inline-block;
  background: #eef5f3;
  color: #4a7c6f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}

/* ORDONNANCE */
.prescription {
  padding: 20px 40px;
  background: #fdf9f4;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid #f0ece6;
}

.prescription .icon { font-size: 24px; }
.prescription p {
  font-size: 13.5px;
  color: #777;
  font-style: italic;
}

/* FOOTER */
.footer {
  padding: 28px 40px;
  text-align: center;
  background: #faf8f5;
}

.footer p {
  font-size: 14px;
  color: #888;
  line-height: 1.7;
}

.footer .cta {
  display: inline-block;
  margin-top: 16px;
  background: #4a7c6f;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.hashtags {
  margin-top: 20px;
  font-size: 12px;
  color: #aaa;
  line-height: 2;
}
