/********** Template CSS **********/
:root {
  --primary: #4e1504;
  --light: #f8fff3;
  --dark: #111a24;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semi-bold {
  font-weight: 600 !important;
}

.error-message {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
  min-height: 1.2rem;
  display: block;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.error-message:not(:empty) {
  opacity: 1;
}

/* Додатковий стиль для полів з помилками */
.form-control.error {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15) !important;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 2px;
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: #ffffff;
  font-size: 15px;
  text-transform: uppercase;
  outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: #dc3545;
}

@media (max-width: 991.98px) {
  .navbar-dark .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }
}
:root {
  --bg-color: #f8fffc;
  --accent-color: #4e1504;
  --text-color: #666565;
  --white: #ffffff;
}

  /* Footer Styles */
  .footer {
    background-color: var(--dark) !important;
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

.footer-brand {
    color: #ffffff !important;
    font-size: 1.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-brand:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.btn-link {
    color: #ffffff !important;
    text-decoration: none;
    padding: 0.5rem 0;
    border: none;
    text-align: left;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-link:hover {
    color: #dc3545 !important;
    transform: translateX(5px);
}

.footer-email {
    color: #ffffff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-email-icon {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.footer-section-title {
    color: #dc3545;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Copyright section */
.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    color: #bdc3c7;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-brand {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .footer-links {
        margin-bottom: 1.5rem;
    }
}

/* Google Fonts - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

@media (max-width: 700px) {
  .cookie-wrapper {
    width: 100%;
  }
}

.cookie-wrapper {
  position: fixed;
  bottom: 0px;
  right: 0;
  width: 40%;
  background: #f2f2f2;
  padding: 15px 25px 22px;
  transition: right 0.3s ease;
  box-shadow: 0 5px 10px rgb(0, 0, 0);
  z-index: 999;
  width: 100%;

  @media (max-width: 600px) {
    width: 100%;
  }
}

.cookie-wrapper .show {
  right: 20px;
}

.hidden {
  display: none;
}

header i {
  color: #4e1504;
  font-size: 32px;
  text-align: center;
}

header h2 {
  color: #4e1504;
  font-weight: 500;
  text-align: center;
}

.data {
  text-align: center;
}

.data p a {
  color: #4e1504;
  text-decoration: none;
  text-align: center !important;
}

.data p a:hover {
  text-decoration: underline;
}

.buttons {
  padding: 20px 0px;
  text-align: center;
}

.buttons .cookie-button {
  border: 2px solid #4e1504;
  color: #fff;
  padding: 8px 0;
  background: #4e1504;
  cursor: pointer;
  width: calc(100% / 2 - 10px);
  transition: all 0.5s ease;
  max-width: 150px;
  border-radius: 0;
}

.buttons #acceptBtn:hover {
  background-color: transparent;
  color: #4e1504;
}

#declineBtn {
  background-color: #fff;
  color: #4e1504;
}

#declineBtn:hover {
  background-color: #4e1504;
  color: #fff;
}

/* new styles  */
/* Variables globales */
:root {
  --bg-primary: #fff;
  --text-primary: #383838;
  --accent-color: #4e1504;
  --heading-color: #241111;
  --border-radius: 0;
  --shadow: 0 2px 8px rgba(0,0,0,0.1);
}



/* Styles pour le bloc hero */
.hero-section {
  padding: 150px 0;
  background: linear-gradient(135deg, #fffbfb 0%, #fff1f1 100%);
}

.hero-title {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  color: var(--accent-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 3rem;
  max-width: 600px;
}

.stats-card {
  background: var(--bg-primary);
  border: 2px solid #f0f0f0;
  border-radius: var(--border-radius);
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
}

.stats-card:hover {
  border-color: var(--accent-color);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.stats-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.stats-label {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 1rem;
}

.btn-primary-custom {
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: white;
  padding: 12px 32px;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary-custom:hover {
  background-color: transparent;
  color: var(--accent-color);
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-section {
    padding: 60px 0;
  }
  
  .stats-card {
    margin-bottom: 1.5rem;
  }
}
/* Styles pour le bloc À propos */
.about-section {
  padding: 80px 0;
  background-color: #fafafa;
}

.about-image {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-title {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.about-text {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--bg-primary);
  border-left: 4px solid var(--accent-color);
  border-radius: var(--border-radius);
}

.feature-icon {
  color: var(--accent-color);
  margin-right: 1rem;
  margin-top: 0.2rem;
  font-size: 1.5rem;
}

.feature-text {
  flex: 1;
  color: var(--text-primary);
  font-size: 1rem;
}

/* Styles pour le bloc Programmes */
.programs-section {
  padding: 80px 0;
  background-color: var(--bg-primary);
}

.programs-title {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

.program-card {
  background: var(--bg-primary);
  border: 2px solid #f0f0f0;
  border-radius: var(--border-radius);
  padding: 2.5rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  height: 100%;
}

.program-card:hover {
  border-color: var(--accent-color);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.btn-small {
  padding: 4px 10px;
  text-transform: initial;
  border: 1px solid #dc3545;
  color: #dc3545;
  border-radius: 0px;
}
.program-number {
  background-color: var(--accent-color);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.program-title {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.program-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

.program-feature-icon {
  color: var(--accent-color);
  margin-right: 0.75rem;
  margin-top: 0.1rem;
  font-size: 1.2rem;
}

.program-feature-text {
  color: var(--text-primary);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Responsive pour les nouveaux blocs */
@media (max-width: 768px) {
  .about-title, .programs-title {
    font-size: 2rem;
  }
  
  .about-image {
    height: 300px;
    margin-bottom: 2rem;
  }
  
  .program-card {
    padding: 2rem;
  }
}

/* Styles pour le bloc Avantages */
.advantages-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.advantages-title {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

.advantage-card {
  background: var(--bg-primary);
  border: none;
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(78, 21, 4, 0.15);
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-color);
}

.advantage-icon {
  background: var(--accent-color);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.advantage-title-item {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.advantage-text {
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.6;
}

.advantages-image {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 1.5rem;
}

/* Styles pour le bloc Histoires de réussite */
.success-section {
  padding: 80px 0;
  background-color: var(--bg-primary);
}

.success-title {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

.testimonial-card {
  background: #fafafa;
  border-left: 5px solid var(--accent-color);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  background: #f5f5f5;
  transform: translateX(5px);
}

.testimonial-quote {
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--accent-color);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.testimonial-text {
  color: var(--text-primary);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
  margin-top: 1rem;
}

.testimonial-author {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

.author-icon {
  color: var(--accent-color);
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

/* Responsive pour les nouveaux blocs */
@media (max-width: 768px) {
  .advantages-title, .success-title {
    font-size: 2rem;
  }
  
  .advantage-card {
    padding: 1.5rem;
  }
  
  .advantages-image {
    height: 200px;
  }
  
  .testimonial-card {
    padding: 2rem;
  }
}
/* Styles pour le bloc Conseils pratiques */
.tips-section {
  padding: 80px 0;
  background-color: var(--bg-primary);
}

.tips-title {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.tips-intro {
  font-size: 1.2rem;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.tips-images {
  margin-bottom: 3rem;
}

.tips-image {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.tip-item {
  background: #fafafa;
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 5px solid var(--accent-color);
  transition: all 0.3s ease;
  position: relative;
}

.tip-item:hover {
  background: #f5f5f5;
  transform: translateX(5px);
  box-shadow: var(--shadow);
}

.tip-number {
  position: absolute;
  top: -15px;
  left: 20px;
  background: var(--accent-color);
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.tip-title {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.tip-description {
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.6;
}

/* Styles pour le bloc Tarifs */
.pricing-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.pricing-title {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

.pricing-card {
  background: var(--bg-primary);
  border: 2px solid #f0f0f0;
  border-radius: var(--border-radius);
  padding: 2.5rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  text-align: center;
}

.pricing-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(78, 21, 4, 0.15);
  transform: translateY(-5px);
}

.pricing-card.featured {
  border-color: var(--accent-color);
  transform: scale(1.05);
}

.pricing-card.featured::before {
  content: 'POPULAIRE';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: white;
  padding: 5px 20px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.plan-name {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.plan-price {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.plan-period {
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.plan-feature {
  display: flex;
  align-items: flex-start;
  text-align: left;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

.plan-feature-icon {
  color: var(--accent-color);
  margin-right: 0.75rem;
  margin-top: 0.1rem;
  font-size: 1.2rem;
}

.plan-feature-text {
  color: var(--text-primary);
  font-size: 0.95rem;
  line-height: 1.5;
  flex: 1;
}

.pricing-note {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-top: 3rem;
  text-align: center;
  color: var(--text-primary);
  font-size: 1rem;
  font-style: italic;
}

/* Responsive pour les nouveaux blocs */
@media (max-width: 768px) {
  .tips-title, .pricing-title {
    font-size: 2rem;
  }
  
  .tips-image {
    height: 250px;
    margin-bottom: 1rem;
  }
  
  .tip-item {
    padding: 1.5rem;
  }
  
  .pricing-card {
    padding: 2rem;
    margin-bottom: 2rem;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .plan-price {
    font-size: 2rem;
  }
}
/* Styles pour le bloc Contacts */
.contact-section {
  padding: 80px 0;
  background-color: var(--bg-primary);
}

.contact-title {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.contact-description {
  font-size: 1.2rem;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.contact-info {
  background: #fafafa;
  border: 2px solid #f0f0f0;
  border-radius: var(--border-radius);
  padding: 3rem;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-info:hover {
  border-color: var(--accent-color);
  box-shadow: var(--shadow);
}

.email-link {
  display: inline-flex;
  align-items: center;
  background: var(--accent-color);
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.email-link:hover {
  background: var(--heading-color);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
}

.email-icon {
  margin-right: 0.5rem;
  font-size: 1.3rem;
}

.social-title {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.5rem;
}

.social-link:hover {
  background: var(--heading-color);
  color: white;
  transform: translateY(-3px) scale(1.1);
}

/* Styles pour le bloc Formulaire */
.form-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.form-title {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

.form-container {
  background: var(--bg-primary);
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--shadow);
  max-width: 600px;
  margin: 0 auto;
}

.form-floating {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-floating .form-control {
  border: 2px solid #f0f0f0;
  border-radius: var(--border-radius);
  padding: 1rem 0.75rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: transparent;
}

.form-floating .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(78, 21, 4, 0.15);
  background: transparent;
}

.form-floating .form-control:focus ~ label {
  color: var(--accent-color);
}

.form-floating label {
  color: var(--text-primary);
  display: flex;
  align-items: center;
  font-weight: 500;
  transition: all 0.3s ease;
}

.form-floating label .material-icons-outlined {
  color: var(--accent-color);
}

.error-message {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
  display: none;
}

.btn-primary {
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: white;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-1px);
}

.btn-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(78, 21, 4, 0.25);
}

/* Responsive pour les blocs finaux */
@media (max-width: 768px) {
  .contact-title, .form-title {
    font-size: 2rem;
  }
  
  .contact-info {
    padding: 2rem;
  }
  
  .form-container {
    padding: 2rem;
    margin: 0 1rem;
  }
  
  .social-links {
    gap: 0.75rem;
  }
  
  .social-link {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
}
:root {
  --primary: #264653;
  --accent: #2a9d8f;
  --highlight: #e9c46a;
  --background: #f0f3f5;
  --text: #333333;
  --white: #ffffff;
  --shadow: 0 2px 8px rgba(38,70,83,0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Raleway', sans-serif;
  color: var(--text);
  background-color: var(--background);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  color: var(--primary);
}

.error-message {
  color: #d62828;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  min-height: 1.2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.error-message:not(:empty) {
  opacity: 1;
}

.form-control.error {
  border: 2px solid #d62828 !important;
  box-shadow: 0 0 0 0.2rem rgba(214,40,40,0.15) !important;
}

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: none;
  z-index: 100;
}

#spinner {
  opacity: 0;
  visibility: hidden;
  z-index: 10000;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
}

#spinner.show {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
}

.btn {
  font-family: 'Raleway', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-primary {
  background-color: var(--accent);
  border: 2px solid var(--accent);
  color: var(--white);
  padding: 0.75rem 1.5rem;
}

.btn-primary:hover {
  background-color: var(--white);
  color: var(--accent);
}

.btn-square {
  width: 40px;
  height: 40px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-dark {
  background-color: var(--primary) !important;
}

.navbar-dark .nav-link {
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  text-transform: uppercase;
  padding: 1rem;
  transition: color 0.3s ease;
}

.navbar-dark .nav-link:hover,
.navbar-dark .nav-link.active {
  color: var(--highlight);
}

.footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 3rem 0 1rem;
  margin-top: 5rem;
}

.footer a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--highlight);
}

.footer-brand {
  font-family: 'Merriweather', serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1rem;
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.cookie-wrapper {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  background: var(--white);
  padding: 1rem 1.5rem;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
  transition: right 0.3s ease;
  z-index: 999;
}

.cookie-wrapper .show {
  right: 20px;
}

.hidden {
  display: none;
}

header i {
  color: var(--accent);
  font-size: 2rem;
}

header h2 {
  color: var(--primary);
  font-weight: 600;
}

.data p a {
  color: var(--accent);
}

.data p a:hover {
  text-decoration: underline;
}

.buttons .cookie-button {
  border: 2px solid var(--accent);
  background: var(--accent);
  color: var(--white);
  padding: 0.5rem 1rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.buttons .cookie-button:hover {
  background: var(--white);
  color: var(--accent);
}

.buttons #declineBtn {
  background: var(--white);
  color: var(--accent);
}

.buttons #declineBtn:hover {
  background: var(--accent);
  color: var(--white);
}

.hero-section {
  padding: 150px 0;
  background: linear-gradient(135deg, var(--white) 0%, var(--background) 100%);
  text-align: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--accent);
}

.hero-description {
  max-width: 600px;
  margin: 0 auto 3rem;
}

.stats-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.05);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.stats-number {
  font-size: 2rem;
  color: var(--accent);
}

.stats-label {
  font-size: 1rem;
  font-weight: 600;
}

.about-section {
  padding: 80px 0;
  background-color: var(--background);
}

.about-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.about-text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.about-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 4px;
}

.feature-item {
  background: var(--white);
  border-left: 4px solid var(--accent);
  padding: 1rem;
}

.feature-icon {
  color: var(--accent);
}

.feature-text {
  color: var(--text);
}

.programs-section {
  padding: 80px 0;
  background: var(--white);
}

.programs-title {
  text-align: center;
  margin-bottom: 3rem;
}

.program-card {
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.program-number {
  background: var(--accent);
  color: var(--white);
}

.program-title {
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.advantages-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--white) 0%, var(--background) 100%);
}

.advantages-title {
  text-align: center;
  margin-bottom: 3rem;
}

.advantage-card {
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-5px);
}

.advantage-icon {
  background: var(--accent);
  color: var(--white);
}

.success-section {
  padding: 80px 0;
  background: var(--white);
}

.testimonial-card {
  background: var(--background);
  border-left: 4px solid var(--accent);
  padding: 2rem;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.tips-section {
  padding: 80px 0;
}

.tip-item {
  background: var(--white);
  border-left: 4px solid var(--accent);
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.tip-item:hover {
  transform: translateY(-5px);
}

.pricing-section {
  padding: 80px 0;
  background: var(--background);
}

.pricing-card {
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.pricing-card.featured {
  transform: scale(1.05);
}

.contact-section {
  padding: 80px 0;
  background: var(--white);
}

.contact-title {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-info {
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.email-link {
  background: var(--accent);
  color: var(--white);
  padding: 1rem 2rem;
  display: inline-flex;
  align-items: center;
}

.email-link:hover {
  background: var(--primary);
}

.form-section {
  padding: 80px 0;
  background: var(--background);
}

.form-container {
  padding: 2rem;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-floating .form-control {
  padding: 1rem;
  border: 1px solid rgba(0,0,0,0.1);
}

.form-floating .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 0.2rem rgba(42,157,143,0.25);
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem; }
  .hero-subtitle { font-size: 1.2rem; }
  .about-title, .programs-title, .advantages-title, .contact-title { font-size: 2rem; }
  .about-image { height: 300px; margin-bottom: 2rem; }
  .program-card, .pricing-card { padding: 1.5rem; }
}
.hero-section {
  position: relative;
  background: url('../img/hero-bg.jpg') center/cover no-repeat;
  padding: 150px 0;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(38,70,83,0.5);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 0.75rem;
}

.hero-subtitle {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}
.hero-button {
  background-color: var(--highlight);
  border: 2px solid var(--highlight);
}

.hero-button:hover {
  background-color: transparent;
  color: var(--highlight);
  border-color: var(--highlight);
}
.stats-section {
  padding: 80px 0;
  background-color: var(--background);
}

.stats-section .stats-card {
  background-color: var(--white);
  border: 2px solid var(--accent);
  border-radius: 8px;
  padding: 2rem 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-section .stats-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.stats-section .stats-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.stats-section .stats-label {
  font-size: 1rem;
  color: var(--text);
}
/* Custom styles for the “À propos” block */
.about-section {
  background-color: #ffffff;
  padding: 80px 0;
}

.about-section .about-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  text-align: center;
}

.about-section .about-text {
  font-size: 1.125rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 600px;
}

.about-section h3 {
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
  text-align: center;
}

.about-section .feature-item {
  display: flex;
  align-items: flex-start;
  background: #f9f9f9;
  border-left: 4px solid var(--accent);
  padding: 1rem 1.25rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.about-section .feature-icon {
  font-size: 1.6rem;
  color: var(--accent);
  margin-right: 0.75rem;
}

.about-section .feature-text {
  font-size: 1rem;
  color: var(--text);
}

.about-section .about-image {
  width: 100%;
  border-radius: 4px;
  box-shadow: var(--shadow);
}
/* Distinctive styles for advantages block */
.advantages-section {
  position: relative;
  background: linear-gradient(135deg, var(--background) 0%, #dde6eb 100%);
  clip-path: polygon(0 5%, 100% 0%, 100% 95%, 0 100%);
  padding: 100px 0;
  overflow: hidden;
}
.advantages-section::before {
  content: "";
  position: absolute;
  top: 20%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: var(--accent);
  opacity: 0.07;
  border-radius: 50%;
}
.advantages-section .container {
  position: relative;
  z-index: 1;
}

.advantages-grid .advantage-card {
  border-radius: 12px;
  padding: 2rem;
  background: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.advantages-grid .col-md-6:nth-child(odd) .advantage-card {
  background: #f9fdfd;
}
.advantages-grid .advantage-card:hover {
  transform: translateY(-7px) rotate(-1deg);
  box-shadow: 0 4px 15px rgba(38,93,95,0.2);
}

.advantages-grid .advantage-icon {
  font-size: 2.5rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--white);
  margin: 0 auto 1rem;
  transition: transform 0.3s ease;
}
.advantages-grid .advantage-card:hover .advantage-icon {
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%     { transform: scale(1.3); }
}

.advantages-title {
  font-size: 3.2rem;
  margin-bottom: 2.5rem;
}

.advantages-grid .advantage-title-item {
  font-size: 1.6rem;
}

.advantages-grid .advantage-text {
  font-size: 1.125rem;
  line-height: 1.7;
}
/* Custom styles for Nos programmes block */
.programs-section {
  position: relative;
  background: url('../img/programs-bg.jpg') center/cover no-repeat;
  padding: 100px 0;
  overflow: hidden;
}

.programs-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(38,93,95,0.6);
  z-index: 1;
}

.programs-section .container {
  position: relative;
  z-index: 2;
}

.programs-title {
  font-size: 3rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.program-card {
  background: rgba(255,255,255,0.9);
  border-radius: 8px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.program-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
}

.program-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.program-feature {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.program-feature-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-right: 0.75rem;
}

.program-feature-text {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.5;
}
/* Custom styles for “Témoignages inspirants” block */
.success-section {
  background-color: var(--white);
  padding: 80px 0;
}

.success-title {
  text-align: center;
  font-size: 2.75rem;
  color: var(--primary);
  margin-bottom: 2.5rem;
}

.testimonial-card {
  position: relative;
  background: var(--background);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.testimonial-quote {
  position: absolute;
  top: -10px;
  left: -10px;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.1;
}

.testimonial-text {
  font-size: 1.125rem;
  color: var(--text);
  line-height: 1.7;
  margin: 1.5rem 0;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
}

.author-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-right: 0.5rem;
}
.tips-section#tips {
  background: url('../img/tips-bg.jpg') center/cover no-repeat;
  padding: 80px 0;
  position: relative;
  color: var(--white);
}
.tips-section#tips::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(38,93,95,0.6);
  z-index: 1;
}
.tips-section#tips .container {
  position: relative;
  z-index: 2;
}
.tips-section#tips .tips-title,
.tips-section#tips .tips-intro,
.tips-section#tips .tip-item {
  color: var(--white);
}
.tips-section#tips .tip-item {
  background: rgb(255 255 255);
  border-left: 4px solid var(--highlight);
}
.tips-section#tips .tip-number {
  background: var(--highlight);
}
.pricing-section {
  background: linear-gradient(135deg, var(--background) 0%, #ffffff 100%);
  padding: 100px 0;
  position: relative;
}
img {
  width: 100%;
}
.pricing-section::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: var(--accent);
  opacity: 0.05;
  transform: rotate(45deg);
}

.pricing-title {
  text-align: center;
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--accent);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.pricing-card.featured {
  border-color: var(--primary);
}

.plan-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.plan-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.plan-period {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.plan-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.plan-feature-icon {
  font-size: 1.75rem;
  color: var(--accent);
  margin-right: 0.75rem;
}

.plan-feature-text {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.5;
}

.btn-small {
  background-color: var(--accent);
  color: var(--white);
  border: none;
  padding: 0.75rem 1.5rem;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-small:hover {
  background-color: var(--white);
  color: var(--accent);
  border: 2px solid var(--accent);
}
/* Réafficher et styliser le formulaire de newsletter */
.contact-section {
  position: relative; /* pour que le z-index des enfants fonctionne */
}

.contact-section .newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 2rem auto 0;
  position: relative;
  z-index: 2; /* au-dessus du calque de fond */
}

.contact-section .newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: var(--white);
  color: var(--text);
  border: none;
  border-radius: 4px 0 0 4px;
  font-size: 1rem;
}

.contact-section .newsletter-input::placeholder {
  color: #999;
}

.contact-section .newsletter-button {
  padding: 0.75rem 1.5rem;
  background: var(--highlight);
  color: var(--white);
  border: none;
  border-radius: 0 4px 4px 0;
  font-weight: 600;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease;
}

.contact-section .newsletter-button:hover {
  background: var(--white);
  color: var(--highlight);
}
/* Gradient background for the entire Contacts section */
.contact-section {
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  padding: 80px 0;
  position: relative;
  color: var(--white);
}

/* Ensure newsletter form stays above the background */
.contact-section .newsletter-form {
  position: relative;
  z-index: 1;
}
/* Custom styles for consultation form block */
.form-section#contact-form {
  background: linear-gradient(135deg, var(--background) 0%, #ffffff 100%);
  padding: 80px 0;
}

.form-section#contact-form .form-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-section#contact-form .form-title {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.form-section#contact-form .form-container {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.form-section#contact-form .form-floating {
  margin-bottom: 1.5rem;
}

.form-section#contact-form .btn-primary {
  background-color: var(--accent);
  border: none;
  font-weight: 600;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .form-section#contact-form .form-image {
    margin-bottom: 2rem;
  }
}
/* Custom styles for the cookie banner */
.cookie-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-wrapper > div:first-child {
  text-align: center;
  margin-bottom: 1rem;
}

.cookie-wrapper i.bx-cookie {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--highlight);
}

.cookie-wrapper h2 {
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.cookie-wrapper .data p {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  margin: 0.75rem 0;
  line-height: 1.5;
  text-align: center;
}

.cookie-wrapper .data a {
  color: var(--highlight);
  text-decoration: underline;
}

.cookie-wrapper .buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.cookie-wrapper .cookie-button {
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  transition: background 0.3s ease, color 0.3s ease;
}

.cookie-wrapper #acceptBtn {
  background: var(--highlight);
  color: var(--white);
  border: none;
}

.cookie-wrapper #declineBtn {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.cookie-wrapper .cookie-button:hover {
  opacity: 0.9;
}
