/* thanks.css */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
background: 
    linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
    url('../img/bg-pattern.jpg') center center / cover no-repeat fixed;  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: #212529;
  font-size: 15px;
  margin: 80px auto;
}

/* Wrapper */
.content {
  max-width: 600px;
  width: 100%;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
}
img {
  width: 100%;
  display: block;
}
h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #27AE60;
}

p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #444;
}

.go-home {
  margin-top: 20px;
  padding: 12px 28px;
  background-color: #27AE60;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.go-home:hover {
  background-color: #219653;
}

/* Responsive */
@media (max-width: 480px) {
  .content {
    padding: 30px 20px;
  }

  h1 {
    font-size: 2rem;
  }

  p {
    font-size: 15px;
  }
}
.potentiel-header {
  background-color: #1C1E21;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.potentiel-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.potentiel-logo {
  max-height: 60px;
    border-radius: 50%;
}

.potentiel-navbar {
  display: flex;
  gap: 1.5rem;
}

.potentiel-nav-link {
  color: #E0E0E0;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}

.potentiel-nav-link:hover {
  color: #27AE60;
}

.potentiel-nav-toggle {
  display: none;
  font-size: 1.5rem;
  color: #E0E0E0;
  cursor: pointer;
}

@media (max-width: 768px) {
  .potentiel-navbar {
    display: none;
    flex-direction: column;
    background-color: #1C1E21;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;
  }

  .potentiel-navbar.show {
    display: flex;
  }

  .potentiel-nav-toggle {
    display: block;
  }
}
section {
  border-radius: 15px;
}
.container {
  max-width: 90%;
    margin: 25px auto;
    padding: 0 2rem;
}
.hero-grid, .about-grid {
  padding: 15px!important;
  border-radius: 15px;
}

/* Hero grid: two columns */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 6rem 0;
  background-color: #F5F7FA;
}

/* Text column */
.hero-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #27AE60;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}
.hero-text h1 {
  font-family: 'Manrope', sans-serif;
  font-size: 3rem;
  color: #212529;
  margin: 1rem 0;
  line-height: 1.2;
}
.hero-text p {
  font-size: 1.125rem;
  color: #6C757D;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.btn-hero {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #2D9CDB;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 700;
  border-radius: 50px;
  font-size: 1.125rem;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.btn-hero:hover {
  background-color: #27AE60;
  transform: scale(1.05);
}

/* Image column */
.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Responsive: single column */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 4rem 0;
  }
  .hero-text h1 {
    font-size: 2.5rem;
  }
  .hero-text h2 {
    font-size: 1.75rem;
  }
}
@media (max-width: 480px) {
  .hero-text p {
    font-size: 15px;
  }
  .btn-hero {
    font-size: 15px;
    padding: 0.75rem 1.5rem;
  }
}
/* About grid: image + text */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  padding: 6rem 0;
  background-color: #FFFFFF;
  margin: 25px auto;
}

/* Image column */
.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Text column */
.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #2D9CDB;
  margin-bottom: 1rem;
}
.about-content p {
  font-family: 'Manrope', sans-serif;
  font-size: 1.125rem;
  color: #212529;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.btn-about {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background-color: #27AE60;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}
.btn-about:hover {
  background-color: #219653;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-content h2 { font-size: 1.75rem; }
}
@media (max-width: 480px) {
  .about-content p { font-size: 15px; }
  .btn-about { padding: 0.5rem 1.5rem; }
}
/* Section Background */
.trois-piliers {padding: 6rem 0;
    background-color: #FAFAFA;
    width: 87%;
    margin: 0 auto; }

/* Header */
.pilier-header { text-align: center; margin-bottom: 3rem; }
.pilier-header h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: #2D9CDB; margin-bottom: 0.5rem; }
.pilier-header p { font-family: 'Manrope', sans-serif; font-size: 1.125rem; color: #6C757D; }

/* Grid */
.pilier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.pilier-item { background: #FFFFFF; padding: 2rem; border-radius: 12px; box-shadow: 0 4px 16px rgba(0,0,0,0.05); text-align: center; }
.pilier-number { font-size: 2rem; font-weight: 700; color: #27AE60; margin-bottom: 1rem; }
.pilier-item h3 { font-family: 'Manrope', sans-serif; font-size: 1.5rem; color: #212529; margin-bottom: 1rem; }
.pilier-item p { font-size: 15px; color: #555; line-height: 1.5; }

/* CTA */
.pilier-cta { text-align: center; margin-top: 3rem; }
.btn-pilier { display: inline-block; padding: 1rem 2rem; background-color: #2D9CDB; color: #FFFFFF; text-decoration: none; font-weight: 600; border-radius: 50px; transition: background-color 0.3s ease, transform 0.3s ease; }
.btn-pilier:hover { background-color: #27AE60; transform: scale(1.05); }

/* Responsive */
@media (max-width: 992px) { .pilier-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 576px) { .pilier-grid { grid-template-columns: 1fr; } .pilier-header h2 { font-size: 2rem; } }
/* Section background and padding */
.trois-piliers {width: 87%;
    margin: 25px auto;padding: 6rem 0; background-color: #FAFAFA; }

/* Header */
.pilier-header { text-align: center; margin-bottom: 3rem; }
.pilier-header h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: #2D9CDB; margin-bottom: 0.5rem; }
.pilier-header p { font-family: 'Manrope', sans-serif; font-size: 1.125rem; color: #6C757D; }

/* Grid layout */
.pilier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.pilier-item { background: #FFFFFF; padding: 2rem; border-radius: 12px; box-shadow: 0 4px 16px rgba(0,0,0,0.05); text-align: center; position: relative; }

/* Number badge */
.pilier-number { position: absolute; top: -20px; left: 50%; transform: translateX(-50%); background-color: #2D9CDB; color: #FFFFFF; width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; font-weight: 700; }

/* Titles and paragraphs */
.pilier-item h3 { font-family: 'Manrope', sans-serif; font-size: 1.5rem; color: #212529; margin: 1.5rem 0 1rem; }
.pilier-item p { font-family: 'Manrope', sans-serif; font-size: 15px; color: #555555; line-height: 1.6; }

/* Call to action */
.pilier-cta { text-align: center; margin-top: 3rem; }
.btn-pilier { display: inline-block; padding: 1rem 2rem; background-color: #2D9CDB; color: #FFFFFF; text-decoration: none; font-weight: 600; border-radius: 50px; transition: background-color 0.3s ease, transform 0.3s ease; }
.btn-pilier:hover { background-color: #27AE60; transform: scale(1.05); }

/* Responsive */
@media (max-width: 992px) { .pilier-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 576px) { .pilier-grid { grid-template-columns: 1fr; } .pilier-header h2 { font-size: 2rem; } }
.formations-section {
  background-color: #FFFFFF;
    padding: 6rem 0;
    width: 87%;
    margin: 25px auto;
}

.formations-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #2D9CDB;
  margin-bottom: 0.5rem;
}

.formations-header p {
  font-family: 'Manrope', sans-serif;
  font-size: 1.125rem;
  color: #6C757D;
}

.formations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .formations-grid {
    grid-template-columns: 1fr;
  }
}

.formation-card {
  position: relative;
  background: #F5F7FA;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.formation-card:hover {
  transform: translateY(-5px);
}

.formation-number {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: #27AE60;
  color: #FFFFFF;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
}

.formation-media img {
  width: 100%;
  height: auto;
  display: block;
}

.formation-body {
  padding: 2rem;
}

.formation-body h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  color: #212529;
  margin-bottom: 1rem;
}

.formation-body p {
  font-size: 15px;
  color: #555555;
  line-height: 1.6;
}

.formations-cta {
  margin-top: 3rem;
}

.btn-formation {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #2D9CDB;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  font-size: 1.125rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-formation:hover {
  background-color: #27AE60;
  transform: scale(1.05);

}

@media (max-width: 576px) {
  .formations-section { padding: 4rem 0; }
  .formations-header h2 { font-size: 2rem; }
  .formations-header p { font-size: 15px; }
  .btn-formation { font-size: 15px; padding: 0.75rem 1.5rem; }
}
.testimonials-section { background-color: #F5F7FA; padding: 6rem 0;width: 87%;
  margin: 25px auto; }

.testimonials-header h2 { font-family: 'Playfair Display', serif; font-size: 3rem; color: #2D9CDB; margin-bottom: 0.5rem; }
.testimonials-header p { font-family: 'Manrope', sans-serif; font-size: 1.125rem; color: #6C757D; }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.testimonial-card { background: #FFFFFF; padding: 2rem; border-radius: 12px; box-shadow: 0 4px 16px rgba(0,0,0,0.05); text-align: center; }

.testimonial-content p { font-style: italic; font-size: 1.25rem; color: #555555; line-height: 1.6; margin-bottom: 1.5rem; }
.testimonial-author { font-weight: 600; color: #212529; font-size: 1.125rem; }

@media (max-width: 992px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 576px) { .testimonials-grid { grid-template-columns: 1fr; } .testimonials-header h2 { font-size: 2rem; } }
.testimonials-section { background-color: #F5F7FA; padding: 6rem 0; }

.testimonials-header h2 { font-family: 'Playfair Display', serif; font-size: 3rem; color: #2D9CDB; margin-bottom: 0.5rem; }
.testimonials-header p { font-family: 'Manrope', sans-serif; font-size: 1.125rem; color: #6C757D; }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.testimonial-card { background: #FFFFFF; padding: 2rem; border-radius: 12px; box-shadow: 0 4px 16px rgba(0,0,0,0.05); text-align: center; }

.testimonial-content p { font-style: italic; font-size: 1.25rem; color: #555555; line-height: 1.6; margin-bottom: 1.5rem; }
.testimonial-author { font-weight: 600; color: #212529; font-size: 1.125rem; }

@media (max-width: 992px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 576px) { .testimonials-grid { grid-template-columns: 1fr; } .testimonials-header h2 { font-size: 2rem; } }
/* Section background and padding */
.pricing-section {
  background-color: #F5F7FA;
  padding: 6rem 0;
  width: 87%;
  margin: 25px auto;
}

/* Header */
.pricing-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.75rem;
  color: #2D9CDB;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}
.pricing-header p {
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  color: #6C757D;
  margin-bottom: 2rem;
}

/* Grid layout */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 992px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card styling */
.pricing-card {
  position: relative;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 10px;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Badge number */
.pricing-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #27AE60;
  color: #ffffff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
}

/* Popular label */
.pricing-popular-text {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #2D9CDB;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-transform: uppercase;
}

/* Title and cost */
.pricing-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  color: #212529;
  margin: 2.5rem 0 1rem;
}
.pricing-cost {
  font-size: 2.25rem;
  font-weight: 700;
  color: #27AE60;
}
.pricing-cost span {
  font-size: 15px;
  color: #6C757D;
}

/* Features list */
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  font-size: 15px;
  color: #555555;
  text-align: left;
}
.pricing-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}
.pricing-features li::before {
  content: '\2713'; /* check mark */
  position: absolute;
  left: 0;
  color: #27AE60;
  font-size: 15px;
}

/* Button */
.btn-pricing {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: 1rem 2rem;
  background-color: #2D9CDB;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  font-size: 1.125rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.btn-pricing:hover {
  background-color: #27AE60;
  transform: scale(1.05);
}

/* Note */
.pricing-note { margin-top: 2rem; }
.note-text { color: #6C757D; }

/* Responsive adjustments */
@media (max-width: 576px) {
  .pricing-section { padding: 4rem 0; }
  .pricing-header h2 { font-size: 2rem; }
  .pricing-header p { font-size: 15px; }
  .btn-pricing { font-size: 15px; padding: 0.75rem 1.5rem; }
}
.approach-section { background-color: #FFFFFF; padding: 6rem 0; 
 width: 87%;margin: 25px auto;}

.approach-header h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: #2D9CDB; margin-bottom: 0.5rem; }
.approach-header p { font-family: 'Manrope', sans-serif; font-size: 1.125rem; color: #6C757D; }

.approach-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 2rem; }

.approach-step-card { background: #F5F7FA; padding: 2rem; border-radius: 12px; text-align: center; box-shadow: 0 4px 16px rgba(0,0,0,0.05); transition: transform 0.3s ease; }
.approach-step-card:hover { transform: translateY(-5px); }

.step-icon { font-size: 2rem; width: 60px; height: 60px; background-color: #27AE60; color: #FFFFFF; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }

.approach-step-card h3 { font-family: 'Manrope', sans-serif; font-size: 1.5rem; color: #212529; margin-bottom: 1rem; }
.approach-step-card p { font-size: 15px; color: #555555; line-height: 1.6; }

.btn-approach { display: inline-block; padding: 1rem 2rem; background-color: #2D9CDB; color: #FFFFFF; text-decoration: none; font-weight: 600; border-radius: 50px; transition: background-color 0.3s ease, transform 0.3s ease; }
.btn-approach:hover { background-color: #27AE60; transform: scale(1.05); }

@media (max-width: 576px) {
  .approach-section { padding: 4rem 0; }
  .approach-header h2 { font-size: 2rem; }
  .approach-header p { font-size: 15px; }
  .btn-approach { font-size: 15px; padding: 0.75rem 1.5rem; }
}
.faq-section { background-color: #FFFFFF;
    padding: 6rem 0;
    width: 87%;
    margin: 25px auto; }
.faq-header h2 { font-family: 'Playfair Display', serif; font-size: 2.75rem; color: #2D9CDB; margin-bottom: 1rem; text-transform: uppercase; }
.faq-header p { font-family: 'Manrope', sans-serif; font-size: 1.125rem; color: #6C757D; margin-bottom: 3rem; }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.5rem; }
.faq-item { border-bottom: 1px solid #E0E0E0; padding-bottom: 1rem; }
.faq-question { font-family: 'Manrope', sans-serif; font-size: 1.25rem; color: #212529; display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.faq-icon { font-size: 1.5rem; color: #27AE60; transition: transform 0.3s ease; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer p { margin-top: 0.5rem; font-family: 'Manrope', sans-serif; font-size: 15px; color: #555555; line-height: 1.6; }
@media (max-width: 576px) { .faq-header h2 { font-size: 2.25rem; } .faq-header p { font-size: 15px; } .faq-question { font-size: 1.1rem; } }
.contact-section { background-color: #F5F7FA; padding: 6rem 0; width: 87%;
    margin: 25px auto;}

.contact-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.75rem;
  color: #2D9CDB;
  margin-bottom: 0.5rem;
}
.contact-header p {
  font-family: 'Manrope', sans-serif;
  font-size: 1.125rem;
  color: #6C757D;
}

.contact-body {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-family: 'Manrope', sans-serif;
  color: #212529;
  font-size: 15px;
  line-height: 1.6;
}

.contact-email {
  color: #27AE60;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.contact-email:hover {
  color: #219653;
}

.contact-hours {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  font-size: 15px;
  color: #555555;
}
.clock-icon {
  font-size: 1.5rem;
  color: #2D9CDB;
  margin-right: 0.75rem;
}

@media (max-width: 576px) {
  .contact-header h2 { font-size: 2.25rem; }
  .contact-header p { font-size: 15px; }
}
.form-section { background-color: #FFFFFF; padding: 6rem 0; width: 87%;
    margin: 25px auto;}

.form-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.75rem;
  color: #2D9CDB;
  margin-bottom: 0.5rem;
}
.form-header p {
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  color: #6C757D;
  margin-bottom: 2rem;
}

.form-wrapper {
  background: #F5F7FA;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.form-description {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  color: #555555;
  margin-bottom: 2rem;
  text-align: center;
}

.request-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 576px) {
  .request-form { grid-template-columns: 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  margin-bottom: 0.5rem;
  color: #212529;
}
.form-group input {
  padding: 0.75rem 1rem;
  font-size: 15px;
  border: 1px solid #CCCCCC;
  border-radius: 8px;
  transition: border-color 0.3s ease;
}
.form-group input:focus {
  outline: none;
  border-color: #2D9CDB;
}
.form-error {
  margin-top: 0.25rem;
  color: #E74C3C;
}

.btn-submit {
  grid-column: span 2;
  padding: 1rem 2rem;
  background-color: #2D9CDB;
  color: #FFFFFF;
  font-family: 'Manrope', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.btn-submit:hover {
  background-color: #27AE60;
  transform: scale(1.03);
}
.site-footer {
  background-color: #1C1E21;
  color: #E0E0E0;
  font-family: 'Manrope', sans-serif;
  margin-top: 4rem;
  width: 87%;
    margin: 25px auto;
    border-radius: 15px;
}

.footer-top {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(224,224,224,0.1);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: none;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
}

.footer-link {
  color: #E0E0E0;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-link:hover {
  color: #27AE60;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-icon {
  font-size: 1.25rem;
  color: #27AE60;
}

.footer-email {
  color: #E0E0E0;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}
.footer-email:hover {
  color: #27AE60;
}

.footer-bottom {
  padding: 1.5rem 0;
}
.footer-bottom p {
  margin: 0;
  color: #6C757D;
}

@media (max-width: 768px) {
  .footer-grid { flex-direction: column; text-align: center; }
  .footer-nav { flex-direction: column; gap: 1rem; }
}
.cookie-wrapper {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 350px;
  background-color: rgba(28, 30, 33, 0.95);
  color: #E0E0E0;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-family: 'Manrope', sans-serif;
  z-index: 1000;
}

.cookie-wrapper.show {
  animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.cookie-wrapper i.bx-cookie {
  font-size: 2rem;
  color: #27AE60;
  margin-right: 0.5rem;
}

.cookie-wrapper h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #FFFFFF;
  margin: 0;
  text-align: center;
}

.cookie-wrapper .data p {
  margin: 0;
  line-height: 1.4;
  color: #CCCCCC;
}

.cookie-wrapper .data a {
  color: #2D9CDB;
  text-decoration: underline;
}

.cookie-wrapper .buttons {
  display: flex;
  gap: 0.5rem;
}

.cookie-button {
  flex: 1;
  padding: 0.75rem;
  border: 2px solid #27AE60;
  background-color: #27AE60;
  color: #FFFFFF;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.cookie-button:hover {
  background-color: transparent;
  color: #27AE60;
}

#declineBtn {
  border-color: #E74C3C;
  background-color: #E74C3C;
  color: #FFFFFF;
}

#declineBtn:hover {
  background-color: transparent;
  color: #E74C3C;
}

/* Responsive */
@media (max-width: 480px) {
  .cookie-wrapper {
    width: 90%;
    right: 5%;
    bottom: 10px;
    padding: 1rem;
  }
  .buttons {
    flex-direction: column;
  }
  .cookie-button {
    width: 100%;
  }
}
/* Back to Top Button */

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: 
    opacity 0.3s ease, 
    visibility 0.3s ease, 
    transform 0.3s ease,
    background-color 0.3s ease;
  cursor: pointer;
  z-index: 1000;
}

/* Состояние видимости (добавьте этот класс через JS при скролле) */
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Эффект при наведении */
.back-to-top:hover {
  background-color: var(--accent);
  transform: translateY(-5px);
}

/* Иконка внутри */
.back-to-top .material-icons-outlined {
  font-size: 24px;
  line-height: 1;
}
/* Кастомные стили для секции Notre Approche */

/* Общие отступы и фоновое оформление */
.approach-section {
  padding: 6rem 0;
  background-color: #F5F7FA;
}
.container {
  margin: 0 auto;
  padding: 0 2rem;
}

/* Двухколоночная сетка */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Адаптив на мобильных */
@media (max-width: 768px) {
  .approach-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Заголовок */
.approach-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2D9CDB;
}
.approach-header p {
  font-family: 'Manrope', sans-serif;
  font-size: 1.125rem;
  color: #212529;
}

/* Список шагов */
.approach-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

/* Карточка шага */
.approach-step-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background-color: #FFFFFF;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.approach-step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Иконка шага */
.step-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: #2D9CDB;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.125rem;
}

/* Заголовок и текст карточки */
.approach-step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #212529;
}
.approach-step-card p {
  font-size: 1rem;
  color: #6C757D;
  line-height: 1.6;
}

/* Колонка с изображением */
.approach-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Кнопка CTA */
.btn-approach {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  background-color: #27AE60;
  color: #FFFFFF;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.btn-approach:hover {
  background-color: #219653;
  transform: scale(1.05);
}
/* Custom CSS pour la Politique de Confidentialité */

.privacy-policy-wrapper {
  margin: 70px auto 100px;
  max-width: 800px;
  padding: 0 1rem;
  font-family: 'Manrope', sans-serif;
  color: #212529;
  line-height: 1.6;
}

.privacy-policy-wrapper h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #2D9CDB;
  text-align: center;
  margin-bottom: 2rem;
}

.privacy-policy-wrapper h3 {
  font-size: 1.5rem;
  color: #1C1E21;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.privacy-policy-wrapper h4 {
  font-size: 1.25rem;
  color: #27AE60;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.privacy-policy-wrapper p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.privacy-policy-wrapper ul {
  list-style: disc inside;
  margin-bottom: 1rem;
  padding-left: 1rem;
}

.privacy-policy-wrapper ul li {
  margin-bottom: 0.5rem;
}

.privacy-policy-wrapper strong {
  font-weight: 600;
}

@media (max-width: 600px) {
  .privacy-policy-wrapper h2 {
    font-size: 2rem;
  }
  .privacy-policy-wrapper h3 {
    font-size: 1.375rem;
  }
  .privacy-policy-wrapper h4 {
    font-size: 1.125rem;
  }
  .privacy-policy-wrapper p,
  .privacy-policy-wrapper ul li {
    font-size: 0.95rem;
  }
}
.privacy-policy-wrapper {
  margin: 70px auto 100px;
  max-width: 90%;
  padding: 2rem 1.5rem;
  background-color: #FFFFFF;       /* белый фон */
  border-radius: 12px;             /* скруглённые углы */
  box-shadow: 0 4px 20px rgba(0,0,0,0.05); /* лёгкая тень */
  font-family: 'Manrope', sans-serif;
  color: #212529;
  line-height: 1.6;
}
/* Styles pour Politique de Cookies (identiques à Politique de Confidentialité) */

.privacy-policy-wrapper {
  margin: 70px auto 100px;
  max-width: 90%;
  padding: 2rem 1.5rem;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  font-family: 'Manrope', sans-serif;
  color: #212529;
  line-height: 1.6;
}

.privacy-policy-wrapper h2,
.privacy-policy-wrapper h2 + div h3 /* applies to both sections */ {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #2D9CDB;
  text-align: center;
  margin-bottom: 2rem;
}

.privacy-policy-wrapper h3 {
  font-size: 1.5rem;
  color: #1C1E21;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.privacy-policy-wrapper h4 {
  font-size: 1.25rem;
  color: #27AE60;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.privacy-policy-wrapper p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.privacy-policy-wrapper ul {
  list-style: disc inside;
  margin-bottom: 1rem;
  padding-left: 1rem;
}

.privacy-policy-wrapper ul li {
  margin-bottom: 0.5rem;
}

.privacy-policy-wrapper strong {
  font-weight: 600;
}

@media (max-width: 600px) {
  .privacy-policy-wrapper h2 {
    font-size: 2rem;
  }
  .privacy-policy-wrapper h3 {
    font-size: 1.375rem;
  }
  .privacy-policy-wrapper h4 {
    font-size: 1.125rem;
  }
  .privacy-policy-wrapper p,
  .privacy-policy-wrapper ul li {
    font-size: 0.95rem;
  }
}
/* Custom CSS pour la section Conditions d’Utilisation */

.terms-wrapper {
  margin: 70px auto 100px;
  max-width: 90%;
  padding: 2rem 1.5rem;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  font-family: 'Manrope', sans-serif;
  color: #212529;
  line-height: 1.6;
}

.terms-wrapper h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #2D9CDB;
  text-align: center;
  margin-bottom: 2rem;
}

.terms-wrapper h3 {
  font-size: 1.5rem;
  color: #1C1E21;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.terms-wrapper h4 {
  font-size: 1.25rem;
  color: #27AE60;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.terms-wrapper p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.terms-wrapper ul {
  list-style: disc inside;
  margin-bottom: 1rem;
  padding-left: 1rem;
}

.terms-wrapper ul li {
  margin-bottom: 0.5rem;
}

.terms-wrapper strong {
  font-weight: 600;
}

@media (max-width: 600px) {
  .terms-wrapper h2 {
    font-size: 2rem;
  }
  .terms-wrapper h3 {
    font-size: 1.375rem;
  }
  .terms-wrapper h4 {
    font-size: 1.125rem;
  }
  .terms-wrapper p,
  .terms-wrapper ul li {
    font-size: 0.95rem;
  }
}
/* Mobile-specific overrides */
@media (max-width: 576px) {
  /* Base adjustments */
  body {
    font-size: 14px;
  }
  .container,
  .privacy-policy-wrapper,
  .terms-wrapper {
    max-width: 100%;
    padding: 1rem;
    margin: 0 auto;
  }

  /* Grids collapse to single column */
  .hero-grid,
  .about-grid,
  .pilier-grid,
  .formations-grid,
  .testimonials-grid,
  .pricing-grid,
  .approach-grid,
  .request-form {
    grid-template-columns: 1fr !important;
  }

  /* Section paddings */
  .hero-grid,
  .about-grid,
  .trois-piliers,
  .formations-section,
  .testimonials-section,
  .pricing-section,
  .approach-section,
  .faq-section,
  .contact-section,
  .form-section {
    padding: 3rem 1rem;
  }

  /* Header & footer */
  .potentiel-header-inner {
    padding: 0.75rem 1rem;
  }
  .potentiel-logo {
    max-height: 50px;
  }
  .potentiel-nav-toggle {
    display: block;
    font-size: 1.25rem;
  }
  .potentiel-nav-link {
    font-size: 0.85rem;
    padding: 0.5rem 0;
  }
  .site-footer {
    padding: 2rem 1rem;
  }
  .footer-top {
    padding: 2rem 0;
  }
  .footer-bottom {
    padding: 1rem 0;
  }

  /* Typography */
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.25rem;
  }
  h4 {
    font-size: 1.125rem;
  }
  p,
  .privacy-policy-wrapper p,
  .terms-wrapper p,
  .faq-answer p,
  .contact-body,
  .form-description {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  /* Buttons */
  .btn-hero,
  .btn-about,
  .btn-pilier,
  .btn-formation,
  .btn-pricing,
  .btn-approach,
  .btn-submit,
  .go-home {
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
  }

  /* Back-to-Top */
  .back-to-top {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 20px;
  }

  /* Cookie banner */
  .cookie-wrapper {
    width: 90%;
    right: 5%;
    bottom: 10px;
    padding: 1rem;
  }
  .cookie-wrapper .buttons {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Form layout */
  .form-wrapper .request-form {
    display: block;
  }
  .form-group {
    margin-bottom: 1rem;
  }
}
