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

:root {
  --primary-green: #0f3f0f;
  --secondary-green: #2d5a47;
  --light-green: #e8f5e9;
  --accent-green: #2e7d32;
  --dark: #1f2937;
  --text: #374151;
  --text-light: #6b7280;
  --light: #fafafa;
  --gray: #6b7280;
  --light-gray: #f8f9fa;
  --white: #ffffff;
  --border-color: #e5e7eb;
  --section-gray: #f8f9fa;
  --section-white: #ffffff;
  --footer-bg: #1f2937;
  --gold: #d4a574;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--white);
  overflow-x: hidden;
}

/* ===================== */
/* HEADER - Style screenshot */
/* ===================== */
header {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.75rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo {
  height: 50px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
}

.brand-location {
  font-size: 0.8rem;
  color: var(--gray);
}

/* Menu hamburger fixé */
.nav-toggle {
  display: none;
  background: var(--white);
  border: none;
  cursor: pointer;
  padding: 0.75rem;
  z-index: 10000;
  position: fixed;
  top: 1rem;
  right: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background-color: var(--primary-green);
  margin: 3px 0;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 0;
}

nav a {
  text-decoration: none;
  color: var(--text);
  padding: 0.75rem 1.25rem;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s ease;
  display: inline-block;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: 0.25rem;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary-green);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}

nav a:hover,
nav a.active {
  color: var(--primary-green);
}

nav a:hover::after,
nav a.active::after {
  width: 70%;
}

/* ===================== */
/* HERO - Style screenshot */
/* ===================== */
.hero-new {
  background-color: var(--primary-green);
  color: var(--white);
  padding: 4rem 2rem 5rem;
  text-align: center;
  width: 100%;
}

.hero-new .hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-new h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hero-new .hero-location {
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-new .hero-description {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.9;
  line-height: 1.7;
}

.hero-new .hero-description .highlight {
  color: var(--gold);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================== */
/* BOUTONS - Style screenshot */
/* ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  border-radius: 6px;
}

.btn-white {
  background-color: var(--white);
  color: var(--primary-green);
}

.btn-white:hover {
  background-color: var(--light-gray);
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-primary {
  background-color: var(--white);
  color: var(--primary-green);
}

.btn-primary:hover {
  background-color: var(--light-gray);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-link {
  color: var(--text);
  font-size: 0.85rem;
  text-decoration: none;
  border: 1px solid var(--border-color);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  display: inline-block;
  margin-top: 0.75rem;
  transition: all 0.3s ease;
}

.btn-link:hover {
  border-color: var(--primary-green);
  color: var(--primary-green);
}

/* ===================== */
/* ILLUSTRATION ÉCOLE */
/* ===================== */
.school-illustration-wrapper {
  display: flex;
  justify-content: center;
  padding: 0 2rem;
  margin-top: -3rem;
  margin-bottom: 3rem;
}

.school-illustration {
  max-width: 700px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* ===================== */
/* SECTIONS */
/* ===================== */
.section-wrapper {
  width: 100%;
}

.section-white {
  background-color: var(--white);
}

.section-gray {
  background-color: var(--light-gray);
}

section {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title h2 {
  font-size: 1.75rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.section-subtitle {
  color: var(--primary-green);
  font-size: 0.95rem;
}

/* ===================== */
/* INFORMATIONS PRATIQUES - Style screenshot */
/* ===================== */
.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.info-card-new {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.info-card-new:hover {
  border-color: var(--primary-green);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.icon-circle-outline-green {
  width: 60px;
  height: 60px;
  border: 2px solid var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.icon-circle-outline-green svg {
  color: var(--primary-green);
}

.info-card-new:hover .icon-circle-outline-green {
  background-color: var(--light-green);
}

.info-card-new h3 {
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.info-card-new .info-days {
  color: var(--text);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.info-card-new .info-time {
  color: var(--primary-green);
  font-size: 0.9rem;
  font-weight: 500;
}

.info-card-new .info-address {
  color: var(--text);
  font-size: 0.9rem;
  margin-bottom: 0.1rem;
}

.info-card-new .info-phone {
  color: var(--primary-green);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.info-card-new .info-email {
  color: var(--text);
  font-size: 0.85rem;
}

/* ===================== */
/* PARCOURS - Style screenshot */
/* ===================== */
.parcours-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.parcours-card-new {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.parcours-card-new:hover {
  border-color: var(--primary-green);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.parcours-card-new h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.parcours-card-new .parcours-description {
  color: var(--text);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.parcours-list-simple {
  list-style: none;
}

.parcours-list-simple li {
  color: var(--text);
  font-size: 0.9rem;
  padding: 0.35rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.parcours-list-simple .bullet {
  color: var(--primary-green);
  font-weight: bold;
}

/* ===================== */
/* NOS VALEURS - Style screenshot */
/* ===================== */
.values-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-item-new {
  text-align: center;
  padding: 1rem;
}

.icon-circle-filled-green {
  width: 60px;
  height: 60px;
  background-color: var(--light-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.icon-circle-filled-green svg {
  color: var(--primary-green);
}

.value-item-new:hover .icon-circle-filled-green {
  background-color: var(--primary-green);
  transform: scale(1.1);
}

.value-item-new:hover .icon-circle-filled-green svg {
  color: var(--white);
}

.value-item-new h3 {
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.value-item-new p {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

/* ===================== */
/* CTA SECTION */
/* ===================== */
.cta-section {
  background-color: var(--primary-green);
  color: var(--white);
  padding: 4rem 2rem;
  text-align: center;
}

.cta-section h2 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.cta-section p {
  opacity: 0.9;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
/* ===================== */
/* FOOTER */
/* ===================== */
footer {
  background-color: var(--footer-bg);
  color: var(--white);
  padding: 3rem 2rem 1rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-section h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-section p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  font-size: 0.9rem;
  transition: opacity 0.3s ease;
}

.footer-section ul a:hover {
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-link {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--primary-green);
  transform: translateY(-2px);
}

.social-link svg {
  width: 18px;
  height: 18px;
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ===================== */
/* SCROLL TO TOP */
/* ===================== */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 45px;
  height: 45px;
  background-color: var(--primary-green);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.scroll-top:hover {
  transform: translateY(-3px);
  background-color: var(--secondary-green);
}

.scroll-top.visible {
  display: flex;
}

/* ===================== */
/* COOKIE BANNER */
/* ===================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--dark);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.cookie-text p {
  color: var(--text);
  font-size: 0.9rem;
  max-width: 600px;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
}

.cookie-btn.accept {
  background-color: var(--primary-green);
  color: var(--white);
}

.cookie-btn.accept:hover {
  background-color: var(--secondary-green);
}

.cookie-btn.refuse {
  background-color: var(--light-gray);
  color: var(--text);
}

.cookie-btn.refuse:hover {
  background-color: var(--border-color);
}

.cookie-btn.settings {
  background-color: transparent;
  color: var(--text);
  border: 1px solid var(--border-color);
}

.cookie-btn.settings:hover {
  border-color: var(--primary-green);
  color: var(--primary-green);
}

/* ===================== */
/* ANCIENNES CLASSES (pour compatibilité) */
/* ===================== */
.hero {
  background-color: var(--primary-green);
  color: var(--white);
  padding: 4rem 2rem;
  text-align: center;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hero p {
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto 2rem;
  opacity: 0.9;
  line-height: 1.7;
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
}

.btn-outline:hover {
  background-color: var(--primary-green);
  color: var(--white);
}

.btn-green {
  background-color: var(--primary-green);
  color: var(--white);
}

.btn-green:hover {
  background-color: var(--secondary-green);
  transform: translateY(-2px);
}

.section-title p {
  color: var(--gray);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.school-image {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 3rem;
  display: block;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: var(--primary-green);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.info-card h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.info-card h3 svg {
  width: 22px;
  height: 22px;
}

.info-card p {
  color: var(--text);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.info-card a {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
}

.info-card a:hover {
  text-decoration: underline;
}

.parcours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.parcours-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.parcours-card:hover {
  border-color: var(--primary-green);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.parcours-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--light-green);
}

.parcours-header svg {
  color: var(--primary-green);
}

.parcours-header h3 {
  color: var(--primary-green);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.parcours-header p {
  color: var(--gray);
  font-size: 0.9rem;
}

.parcours-content {
  padding: 1.5rem;
}

.parcours-content p {
  color: var(--text);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.parcours-content ul {
  list-style: none;
}

.parcours-content li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  color: var(--text);
  font-size: 0.95rem;
}

.parcours-content li svg {
  color: var(--primary-green);
  flex-shrink: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.value-card {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: var(--primary-green);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  background: var(--light-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.icon-wrapper svg {
  color: var(--primary-green);
}

.value-card:hover .icon-wrapper {
  background: var(--primary-green);
}

.value-card:hover .icon-wrapper svg {
  color: var(--white);
}

.value-card h3 {
  color: var(--dark);
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.value-card p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===================== */
/* CARTES GÉNÉRIQUES (autres pages) */
/* ===================== */
.new-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.new-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-green);
}

.icon-circle-outline {
  width: 70px;
  height: 70px;
  border: 2px solid var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: all 0.3s ease;
}

.icon-circle-outline svg {
  width: 32px;
  height: 32px;
  color: var(--primary-green);
  stroke-width: 1.5;
}

.new-card:hover .icon-circle-outline {
  background-color: var(--light-green);
  transform: scale(1.1);
}

.icon-circle-filled {
  width: 60px;
  height: 60px;
  background-color: var(--light-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.icon-circle-filled svg {
  width: 28px;
  height: 28px;
  color: var(--primary-green);
}

.new-card:hover .icon-circle-filled {
  background-color: var(--primary-green);
}

.new-card:hover .icon-circle-filled svg {
  color: var(--white);
}

.cards-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.cards-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ===================== */
/* PAGE CONTACT */
/* ===================== */
.contact-header-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  margin-bottom: 2rem;
}

.contact-header-card h2 {
  font-size: 1.75rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.contact-header-card .subtitle {
  color: var(--gray);
  margin-bottom: 2rem;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.contact-item {
  text-align: center;
}

.contact-item .icon-circle-outline {
  margin-bottom: 0.75rem;
}

.contact-item .label {
  font-size: 0.85rem;
  color: var(--gray);
  text-decoration: underline;
  margin-bottom: 0.25rem;
}

.contact-item .value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
}

.contact-item .value a {
  color: var(--primary-green);
  text-decoration: none;
}

.contact-item .sub-label {
  font-size: 0.8rem;
  color: var(--gray);
}

.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-detail-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.contact-detail-card:hover {
  border-color: var(--primary-green);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-detail-card .icon-circle-outline {
  margin: 0 auto 1rem;
}

.contact-detail-card h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 1rem;
  text-align: center;
}

.contact-detail-card p {
  text-align: center;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.contact-detail-card .btn {
  display: block;
  margin-top: 1rem;
}

.horaires-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}

.horaires-row:last-child {
  border-bottom: none;
}

.horaires-row .day {
  color: var(--text);
}

.horaires-row .time {
  color: var(--primary-green);
  font-weight: 600;
}

.social-buttons-simple {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-btn.facebook {
  background-color: #1877f2;
  color: white;
}

.social-btn.facebook:hover {
  background-color: #1565c0;
  transform: translateY(-2px);
}

.social-btn.instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
  color: white;
}

.social-btn.instagram:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.social-btn svg {
  width: 18px;
  height: 18px;
}

.how-to-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.how-to-contact-card {
  background: var(--light-green);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.how-to-contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(15, 63, 15, 0.15);
}

.how-to-contact-card .icon-circle-filled {
  background-color: var(--primary-green);
  margin-bottom: 1rem;
}

.how-to-contact-card .icon-circle-filled svg {
  color: white;
}

.how-to-contact-card h3 {
  color: var(--dark);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.how-to-contact-card p {
  color: var(--text);
  font-size: 0.9rem;
}

/* ===================== */
/* PAGE INFOS PRATIQUES */
/* ===================== */
.infos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.info-box {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.info-box:hover {
  border-color: var(--primary-green);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.info-box-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-box-header .icon-circle-outline {
  margin: 0;
  width: 50px;
  height: 50px;
}

.info-box-header .icon-circle-outline svg {
  width: 24px;
  height: 24px;
}

.info-box-header h3 {
  font-size: 1.1rem;
  color: var(--dark);
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: var(--light-green);
  border-radius: 10px;
  margin-bottom: 0.75rem;
}

.info-row:last-child {
  margin-bottom: 0;
}

.info-row .label {
  color: var(--text);
}

.info-row .value {
  color: var(--primary-green);
  font-weight: 600;
}

.effectif-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.effectif-row:last-child {
  border-bottom: none;
}

.effectif-row .left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.effectif-row svg {
  width: 20px;
  height: 20px;
  color: var(--primary-green);
}

.effectif-row .number {
  color: var(--primary-green);
  font-weight: 700;
}

.coordonnees-header {
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1rem;
}

.coordonnees-header h4 {
  font-size: 1rem;
  color: var(--dark);
}

.coordonnees-header p {
  font-size: 0.85rem;
  color: var(--gray);
}

.coordonnees-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
}

.coordonnees-row svg {
  width: 18px;
  height: 18px;
  color: var(--primary-green);
}

.coordonnees-row span {
  color: var(--text);
}

.coordonnees-row .value {
  margin-left: auto;
  color: var(--primary-green);
  font-weight: 600;
}

/* ===================== */
/* PAGE NOTRE EQUIPE */
/* ===================== */
.team-section-new {
  margin-bottom: 3rem;
}

.team-section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.team-section-header .icon-circle-filled {
  margin-bottom: 1rem;
}

.team-section-header h2 {
  font-size: 1.75rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.team-section-header p {
  color: var(--gray);
}

.director-main-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.director-main-card:hover {
  border-color: var(--primary-green);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.director-main-card .avatar-large {
  width: 80px;
  height: 80px;
  background-color: var(--light-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.director-main-card .avatar-large svg {
  width: 40px;
  height: 40px;
  color: var(--primary-green);
}

.director-main-card .content h3 {
  font-size: 1.35rem;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.director-main-card .content .role {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.director-main-card .content p {
  color: var(--text);
  line-height: 1.7;
}

.team-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.team-card-new {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.team-card-new:hover {
  border-color: var(--primary-green);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.team-card-new .avatar {
  width: 70px;
  height: 70px;
  background-color: var(--light-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.team-card-new .avatar svg {
  width: 32px;
  height: 32px;
  color: var(--primary-green);
}

.team-card-new:hover .avatar {
  transform: scale(1.1);
}

.team-card-new .avatar.blue {
  background-color: #e3f2fd;
}

.team-card-new .avatar.blue svg {
  color: #1976d2;
}

.team-card-new .avatar.purple {
  background-color: #f3e5f5;
}

.team-card-new .avatar.purple svg {
  color: #7b1fa2;
}

.team-card-new .avatar.pink {
  background-color: #fce4ec;
}

.team-card-new .avatar.pink svg {
  color: #c2185b;
}

.team-card-new h4 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.team-card-new .role {
  color: var(--primary-green);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.team-card-new .role.blue {
  color: #1976d2;
}

.team-card-new .role.purple {
  color: #7b1fa2;
}

.team-card-new .role.pink {
  color: #c2185b;
}

.team-card-new p {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.6;
}

.organigramme-img {
  max-width: 100%;
  margin: 2rem auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.organigramme-img:hover {
  transform: scale(1.02);
}

/* ===================== */
/* PAGE NOTRE ECOLE */
/* ===================== */
.badge-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1rem;
  background-color: var(--light-green);
  color: var(--primary-green);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.badge:hover {
  background-color: var(--primary-green);
  color: white;
  transform: translateY(-2px);
}

.badge svg {
  width: 14px;
  height: 14px;
}

.badge.blue {
  background-color: #e3f2fd;
  color: #1976d2;
}

.badge.blue:hover {
  background-color: #1976d2;
  color: white;
}

.badge.orange {
  background-color: #fff3e0;
  color: #e65100;
}

.badge.orange:hover {
  background-color: #e65100;
  color: white;
}

.parcours-section-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.parcours-section-card:hover {
  border-color: var(--primary-green);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.parcours-section-card.maternelle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.parcours-left {
  padding-right: 2rem;
  border-right: 1px solid var(--border-color);
}

.parcours-header-new {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.parcours-header-new .icon-small {
  width: 40px;
  height: 40px;
  background-color: var(--light-green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parcours-header-new .icon-small svg {
  width: 22px;
  height: 22px;
  color: var(--primary-green);
}

.parcours-header-new h3 {
  color: var(--primary-green);
  font-size: 1.25rem;
}

.parcours-header-new .levels {
  color: var(--gray);
  font-size: 0.9rem;
}

.parcours-description {
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.parcours-list {
  list-style: none;
}

.parcours-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.5rem 0;
  color: var(--text);
}

.parcours-list li svg {
  width: 16px;
  height: 16px;
  color: var(--primary-green);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.parcours-list li strong {
  color: var(--primary-green);
}

.parcours-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.parcours-badge-item {
  background: var(--light-green);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  transition: all 0.3s ease;
}

.parcours-badge-item:hover {
  background: var(--primary-green);
  color: white;
  transform: translateY(-3px);
}

.parcours-badge-item:hover svg {
  color: white;
}

.parcours-badge-item:hover h4,
.parcours-badge-item:hover p {
  color: white;
}

.parcours-badge-item svg {
  width: 28px;
  height: 28px;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.parcours-badge-item h4 {
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.parcours-badge-item p {
  font-size: 0.75rem;
  color: var(--gray);
}

.foi-card {
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
}

.foi-card .icon-circle-outline {
  border-color: var(--primary-green);
  margin-bottom: 1.5rem;
}

.foi-card h3 {
  font-size: 1.35rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.foi-card > p {
  color: var(--text);
  max-width: 700px;
  margin: 0 auto 2rem;
}

.foi-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  text-align: left;
}

.foi-column h4 {
  color: var(--dark);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.foi-column ul {
  list-style: none;
}

.foi-column li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  color: var(--text);
}

.foi-column li svg {
  width: 16px;
  height: 16px;
  color: var(--primary-green);
}

.foi-column li strong {
  color: var(--primary-green);
}

/* ===================== */
/* PAGE GALERIE */
/* ===================== */
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.galerie-item {
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.galerie-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.galerie-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.galerie-item .caption {
  padding: 1rem;
  text-align: center;
  color: var(--text);
  font-size: 0.9rem;
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */
@media (max-width: 1024px) {
  .header-container {
    padding: 0.75rem 1.5rem;
  }

  .info-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .parcours-section-card.maternelle {
    grid-template-columns: 1fr;
  }

  .parcours-left {
    padding-right: 0;
    border-right: none;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
  }

  .foi-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 9999;
    display: none;
    padding: 5rem 2rem 2rem;
    overflow-y: auto;
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
  }

  nav a {
    padding: 1.25rem;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border-color);
    display: block;
  }

  nav a::after {
    display: none;
  }

  .brand-text {
    display: none;
  }

  .hero-new h1 {
    font-size: 2rem;
  }

  .parcours-cards-grid,
  .values-grid-new,
  .info-cards-grid {
    grid-template-columns: 1fr;
  }

  .team-cards-grid,
  .infos-grid,
  .contact-details-grid,
  .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .how-to-contact-grid {
    grid-template-columns: 1fr;
  }

  .director-main-card {
    flex-direction: column;
    text-align: center;
  }

  .director-main-card .avatar-large {
    margin: 0 auto;
  }

  .parcours-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid-2,
  .cards-grid-3,
  .cards-grid-4 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .header-container {
    padding: 0.75rem 1rem;
  }

  section {
    padding: 3rem 1rem;
  }

  .hero-new {
    padding: 3rem 1rem 4rem;
  }

  .hero-new h1 {
    font-size: 1.75rem;
  }

  .hero-new .hero-description br {
    display: none;
  }

  .school-illustration-wrapper {
    padding: 0 1rem;
    margin-top: -2rem;
  }

  .section-title h2 {
    font-size: 1.5rem;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
    max-width: 280px;
  }

  .social-buttons-simple {
    flex-direction: column;
    align-items: center;
  }

  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .parcours-badges {
    grid-template-columns: 1fr;
  }
}


/* ===== Hover bouton "Voir l'affiche" (UI propre) ===== */
.open-day-btn{
  position: relative;
  border-radius: 12px;
  padding: 12px 22px;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

/* petit "glow" derrière (invisible au repos) */
.open-day-btn::after{
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 14px;
  background: radial-gradient(circle at 30% 30%, rgba(46,125,50,.35), rgba(46,125,50,0) 60%);
  opacity: 0;
  transition: opacity .18s ease;
  z-index: -1;
}

.open-day-btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
  filter: brightness(1.05);
}

.open-day-btn:hover::after{
  opacity: 1;
}

.open-day-btn:active{
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(0,0,0,.16);
}

/* focus clavier (accessibilité) */
.open-day-btn:focus-visible{
  outline: 3px solid rgba(46,125,50,.35);
  outline-offset: 3px;
}

.social-btn.ecoledirecte {
  background: linear-gradient(135deg, #0088cc 0%, #00a9e0 100%);
  color: white;
}

.social-btn.ecoledirecte:hover {
  background: linear-gradient(135deg, #006699 0%, #0088cc 100%);
  transform: translateY(-2px);
}

/* ============================================
   STYLES SPÉCIFIQUES PAGE TARIFS
   ============================================ */

/* Carte principe de tarification */
.tarif-principe-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(15, 63, 15, 0.08);
  margin-bottom: 2rem;
}

.tarif-principe-card .icon-circle-outline {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0f3f0f;
  border-radius: 50%;
  color: #0f3f0f;
}

.tarif-principe-card h2 {
  color: #0f3f0f;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.tarif-principe-card p {
  color: #4a5568;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Frais annuels */
.tarif-frais-annuels {
  background: #f8faf8;
  border-radius: 12px;
  padding: 2rem;
  border-left: 4px solid #0f3f0f;
}

.tarif-frais-annuels h3 {
  color: #0f3f0f;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.frais-list {
  display: grid;
  gap: 1rem;
}

.frais-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  transition: transform 0.2s ease;
}

.frais-item:hover {
  transform: translateX(5px);
}

.frais-label {
  color: #2d3748;
  font-size: 1rem;
  font-weight: 500;
}

.frais-value {
  color: #0f3f0f;
  font-size: 1.2rem;
  font-weight: 700;
}

/* Grille des tarifs */
.tarif-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Carte tarif */
.tarif-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(15, 63, 15, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tarif-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(15, 63, 15, 0.15);
}

/* Header de la carte */
.tarif-card-header {
  background: linear-gradient(135deg, #0f3f0f 0%, #1a5a1a 100%);
  color: white;
  padding: 2rem;
  text-align: center;
}

.tarif-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  backdrop-filter: blur(10px);
}

.tarif-card-header h3 {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.tarif-card-header .subtitle {
  font-size: 0.95rem;
  opacity: 0.9;
  font-weight: 400;
}

/* Table des tarifs */
.tarif-table {
  padding: 1.5rem;
}

.tarif-table-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: #f8faf8;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: #0f3f0f;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tarif-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid #e2e8f0;
  align-items: center;
  transition: background 0.2s ease;
}

.tarif-row:last-child {
  border-bottom: none;
}

.tarif-row:hover {
  background: #f8faf8;
}

.quotient {
  color: #4a5568;
  font-size: 0.95rem;
  font-weight: 500;
}

.prix {
  color: #0f3f0f;
  font-size: 1.25rem;
  font-weight: 700;
}

/* Tarifs cantine */
.cantine-tarifs {
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}

.cantine-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem;
  background: #f8faf8;
  border-radius: 12px;
  border-left: 4px solid #0f3f0f;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cantine-item:hover {
  transform: translateX(5px);
  box-shadow: 0 2px 8px rgba(15, 63, 15, 0.1);
}

.niveau {
  color: #2d3748;
  font-size: 1.05rem;
  font-weight: 600;
}

.prix-repas {
  color: #0f3f0f;
  font-size: 1.5rem;
  font-weight: 700;
}

/* Extras / Frais supplémentaires */
.tarif-extras {
  padding: 1.5rem;
  background: #f8faf8;
  border-top: 1px solid #e2e8f0;
}

/* Masquer les frais annuels dans la première carte (École) */
.tarif-card:first-child .tarif-extras {
  display: none;
}

.tarif-extras h4 {
  color: #0f3f0f;
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tarif-extras ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tarif-extras li {
  color: #4a5568;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.tarif-extras li::before {
  content: "•";
  color: #0f3f0f;
  font-weight: bold;
  font-size: 1.5rem;
  margin-right: 0.75rem;
}

.tarif-extras strong {
  color: #0f3f0f;
  margin-left: auto;
  font-weight: 700;
}

/* Note importante */
.tarif-note {
  background: linear-gradient(135deg, #fff5e6 0%, #ffe6cc 100%);
  border-left: 4px solid #ff9800;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.note-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff9800;
}

.tarif-note p {
  color: #7c3f00;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

/* Section téléchargement */
.download-section {
  text-align: center;
  padding: 2rem 0;
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 4px 12px rgba(15, 63, 15, 0.2);
}

.btn-large:hover {
  box-shadow: 0 6px 20px rgba(15, 63, 15, 0.3);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .tarif-grid {
    grid-template-columns: 1fr;
  }
  
  .tarif-principe-card {
    padding: 1.5rem;
  }
  
  .tarif-principe-card h2 {
    font-size: 1.5rem;
  }
  
  .tarif-card-header h3 {
    font-size: 1.5rem;
  }
  
  .tarif-table-header,
  .tarif-row {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .quotient {
    margin-bottom: 0.5rem;
  }
  
  .btn-large {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .tarif-frais-annuels {
    padding: 1.5rem;
  }
  
  .frais-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .cantine-item {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .tarif-note {
    flex-direction: column;
    text-align: center;
  }
  
  .note-icon {
    margin: 0 auto;
  }
}
