/********** Template CSS **********/
:root {
    --primary: #2e8f16;
    --light: #fafdfb;
    --dark: #ae1d63;
}

.fw-medium {
    font-weight: 500 !important;
}
.money_for_gold_item_name {
  background-color: #2e8f16;
  color: #fff;
  padding: 4px 10px;
  font-size: 18px;
  display: inline;
  margin-bottom: 8px;
}
.fw-semi-bold {
    font-weight: 600 !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: #000000;
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }
}

/*** Header end ***/
/* Footer */
.footer-section {
  background: linear-gradient(135deg, var(--text-color) 0%, #3d1a2e 100%);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.footer-brand {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  margin-bottom: 2rem;
  display: inline-block;
  transition: all 0.3s ease;
}

.footer-brand:hover {
  color: var(--bg-color);
  transform: translateY(-2px);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.footer-link:hover {
  color: white;
  background: rgba(255, 246, 246, 0.1);
  border-color: rgba(255, 246, 246, 0.2);
  transform: translateY(-2px);
}

.footer-email {
  color: var(--bg-color);
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.footer-divider {
  width: 60px;
  height: 2px;
  background: var(--bg-color);
  margin: 2rem auto;
  border-radius: 2px;
  opacity: 0.6;
}

.footer-copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  
  .footer-brand {
    font-size: 1.6rem;
  }
  
  .footer-email {
    font-size: 1rem;
  }
}
/* 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: 98vw;
        left: 1vw;
        right: 1vw;
        bottom: 10px;
        padding: 14px 8px 12px 8px;
        border-radius: 12px;
    }
}

.cookie-wrapper {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 360px;
    max-width: 95vw;
    background: #fff;
    padding: 20px 28px 18px 28px;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(46, 143, 22, 0.10), 0 1.5px 6px rgba(0,0,0,0.07);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border: 1.5px solid #e6f4ea;
    transition: right 0.3s ease, bottom 0.3s ease;
}

.cookie-wrapper .material-icons {
    color: #2e8f16;
    font-size: 38px;
    display: block;
    margin: 0 auto 4px auto;
}

.cookie-wrapper h2 {
    color: #2e8f16;
    font-weight: 600;
    font-size: 1.18rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.data {
    text-align: center;
    font-size: 1rem;
    color: #222;
    margin-bottom: 0.5rem;
}
.data p a {
    color: #2e8f16;
    text-decoration: underline;
    font-weight: 500;
}
.data p a:hover {
    text-decoration: underline dotted;
}

.buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    width: 100%;
    margin-top: 8px;
}
.buttons .cookie-button {
    border: none;
    color: #fff;
    padding: 9px 0;
    background: #2e8f16;
    cursor: pointer;
    width: 130px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 24px;
    box-shadow: 0 2px 8px rgba(46,143,22,0.07);
    transition: background 0.2s, color 0.2s, border 0.2s;
    outline: none;
}
.buttons #acceptBtn:hover {
    background-color: #fff;
    color: #2e8f16;
    border: 2px solid #2e8f16;
}
#declineBtn {
    background-color: #fff;
    color: #2e8f16;
    border: 2px solid #2e8f16;
}
#declineBtn:hover {
    background-color: #2e8f16;
    color: #fff;
}

.hidden {
    display: none;
}

header i {
    color: #2e8f16;
    font-size: 32px;
    text-align: center;
}
header h2 {
    /* color: #2e8f16; */
    font-weight: 500;
    text-align: center;
}
.data {
    text-align: center;
}
.data p a {
    color: #2e8f16;
    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 #2e8f16;
    color: #fff;
    padding: 8px 0;
    background: #2e8f16;
    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: #2e8f16;
}
#declineBtn {
    background-color: #fff;
    color: #2e8f16;
}
#declineBtn:hover {
    background-color: #2e8f16;
    color: #fff;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #333;
  color: white;
  padding: 1rem;
}

.logo {
  font-size: 1.5rem;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
}

.burger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  height: 21px;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: white;
}

@media (max-width: 578px) {
  .nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
      position: absolute;
      top: 60px;
      left: 0;
      background-color: #333;
  }

  .nav-links li {
      text-align: center;
      margin: 10px 0;
  }

  .burger {
      display: flex;
  }
  
  .nav-active {
      display: flex;
  }
}
hr {
  margin: 1rem 0;
 border: 1px solid #2e8f16;

}

@media (max-width: 768px) {
  .display-3 {
font-size: 34px;
  }
}


/* new styles  */
/* Variables de couleur */
:root {
  --bg-color: #fff;
  --text-color: #0f0d1a;
  --accent-color: #2e8f16;
  --light-gray: #f8f9fa;
  --border-color: #e9ecef;
}

/* Styles globaux */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Header fixe */
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background-color: var(--bg-color);
  border-bottom: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color) !important;
  letter-spacing: -0.02em;
}

.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--accent-color) !important;
}

/* new styles  */


:root {
  --primary: #2e8f16;
  --secondary: #ae1d1d;
  --background: #f7fff6;
  --white: #ffffff;
  --dark: #333333;
  --light-gray: #f5f5f5;
  --gray: #6c757d;
  --border-radius: 8px;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* Загальні стилі */
body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--background);
  color: var(--dark);
  line-height: 1.6;
}

.section-title-container {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.section-subtitle {
  display: inline-block;
  background-color: var(--white);
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  margin: 1rem auto 0;
  border-radius: 2px;
}

.btn {
  padding: 0.8rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--primary);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
}

.feature-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
  text-align: center;
}

/* Стилі для блоку Hero */
.hero-section {
  padding: 10rem 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gray);
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-image {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-image:hover img {
  transform: scale(1.03);
}

.features-section {
  padding: 5rem 0;
  background-color: var(--white);
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-image {
    margin-top: 3rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 10rem 0;
  }
  
  .hero-title {
    font-size: 2.3rem;
  }
  
  .feature-card {
    margin-bottom: 1.5rem;
  }
}
/* Стилі для блоку "Le projet Évolution Sereine" */
.project-section {
  padding: 5rem 0;
  background-color: var(--background);
}

.project-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-image:hover img {
  transform: scale(1.03);
}

.project-content {
  padding: 0 1.5rem;
}

.project-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
}

.project-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
}

.project-list li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary);
}

.highlight-text {
  font-weight: 700;
  color: var(--primary);
}

/* Стилі для блоку "Ce que nous proposons" */
.services-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.service-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  border-top: 4px solid var(--primary);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.service-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
}

.formats-container {
  background-color: var(--light-gray);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-top: 3rem;
}

.formats-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--dark);
  text-align: center;
}

.formats-list {
  list-style: none;
  padding-left: 0;
}

.formats-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.formats-list li:before {
  content: '';
  font-family: 'Material Icons';
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary);
}

.formats-list li:nth-child(1):before {
  content: 'self_improvement';
}

.formats-list li:nth-child(2):before {
  content: 'groups';
}

.formats-list li:nth-child(3):before {
  content: 'person';
}
/* Стилі для блоку "Les avantages pour vous" */
.advantages-section {
  padding: 5rem 0;
  background-color: var(--background);
}

.advantage-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.advantage-image {
  height: 200px;
  overflow: hidden;
}

.advantage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.advantage-card:hover .advantage-image img {
  transform: scale(1.05);
}

.advantage-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.advantage-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
}

/* Стилі для блоку "Nos méthodes et approches" */
.methods-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.method-card {
  background-color: var(--light-gray);
  border-radius: var(--border-radius);
  padding: 2rem;
  transition: var(--transition);
  height: 100%;
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.method-card:hover {
  background-color: rgba(46, 143, 22, 0.05);
}

.method-icon {
  font-size: 2rem;
  min-width: 40px;
  margin-right: 1rem;
}

.method-content {
  flex-grow: 1;
}

.method-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.intro-text {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Стилі для блоку "Nos formules d'abonnement" */
.pricing-section {
  padding: 5rem 0;
  background-color: var(--background);
}

.pricing-plan {
  margin-bottom: 4rem;
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.pricing-plan:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pricing-plan:last-child {
  margin-bottom: 0;
}

.pricing-image {
  height: 100%;
  min-height: 250px;
  overflow: hidden;
}

.pricing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pricing-plan:hover .pricing-image img {
  transform: scale(1.05);
}

.pricing-content {
  padding: 2rem;
}

.pricing-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pricing-price {
  color: var(--primary);
  font-weight: bold;
}

.pricing-description {
  margin-bottom: 1.5rem;
}

.pricing-btn {
  margin-top: 1rem;
}

/* Стилі для блоку "Histoires de nos participants" */
.testimonials-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.testimonial-card {
  background-color: var(--light-gray);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
  transition: var(--transition);
  min-height: 315px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
  border-left: 3px solid var(--primary);
}

.testimonial-author {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.testimonial-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonial-plan {
  background-color: rgba(46, 143, 22, 0.1);
  color: var(--primary);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.testimonial-rating {
  color: #ffc107;
  letter-spacing: 2px;
}

.testimonial-rating .empty {
  color: #e0e0e0;
}

@media (max-width: 992px) {
  .pricing-image {
    min-height: 200px;
  }
}

@media (max-width: 768px) {
  .pricing-plan {
    flex-direction: column;
  }
  
  .pricing-image {
    height: 200px;
  }
}

/* Стилі для блоку "Formulaire d'inscription" і "Contact" */
.contact-section {
  padding: 5rem 0;
  background-color: var(--background);
}

.contact-info {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  height: 100%;
  box-shadow: var(--shadow);
}

.contact-info-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.contact-email {
  display: inline-flex;
  align-items: center;
  margin-top: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition);
  text-decoration: none;
}

.contact-email:hover {
  color: var(--secondary);
}

.contact-email .material-icons {
  margin-right: 0.5rem;
}

.form-container {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.form-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
}

.form-subtitle {
  margin-bottom: 2rem;
}

.form-floating {
  margin-bottom: 1.5rem;
}

.form-control {
  border-radius: var(--border-radius);
  border: 1px solid #e0e0e0;
  padding: 1rem 0.75rem;
  height: calc(3.5rem + 2px);
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(46, 143, 22, 0.25);
}

.form-floating > label {
  padding: 1rem 0.75rem;
}

.error-message {
  color: var(--secondary);
  font-size: 0.85rem;
  margin-top: 0.25rem;
  margin-bottom: 0;
  min-height: 1.25rem;
}

.btn-submit {
  background-color: var(--primary);
  color: var(--white);
  border: none;
  font-weight: 600;
  letter-spacing: 1px;
  transition: var(--transition);
}

.btn-submit:hover {
  background-color: var(--secondary);
  color: var(--white);
}

@media (max-width: 992px) {
  .contact-info {
    margin-top: 2rem;
  }
}

/* Стилі для блоку "Politique de confidentialité" */
.policy-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.policy-container {
  background-color: var(--background);
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.policy-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.policy-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.policy-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary);
}

.policy-update {
  color: var(--gray);
  font-style: italic;
  margin-bottom: 2rem;
  display: block;
}

.policy-intro {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  border-left: 3px solid var(--primary);
  padding-left: 1rem;
}

.policy-section-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.policy-section-title::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: var(--primary);
  margin-right: 0.8rem;
  border-radius: 50%;
}

.policy-list {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.policy-list li {
  margin-bottom: 0.5rem;
  position: relative;
}

.policy-list li::before {
  content: '•';
  color: var(--primary);
  font-weight: bold;
  position: absolute;
  left: -1rem;
}

.policy-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.policy-link:hover {
  color: var(--secondary);
  text-decoration: underline;
}

.policy-email {
  color: var(--primary);
  font-weight: 600;
}

@media (max-width: 768px) {
  .policy-container {
    padding: 2rem;
  }
}
/* Reset and Variables */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #4A90E2;
  --secondary: #D9534F;
  --background: #F0F8FF;
  --text-color: #333333;
  --light-gray: #ECEFF1;
  --border-color: #BDC3C7;
  --border-radius: 8px;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* Typography */
body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background-color: var(--background);
  color: var(--text-color);
  line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
  font-family: Georgia, serif;
  color: var(--text-color);
}

/* Buttons */
.btn {
  font-family: "Helvetica Neue", Arial, sans-serif;
  padding: 0.8rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: #ffffff;
  border: 2px solid var(--primary);
}
.btn:hover {
  background-color: transparent;
  color: var(--primary);
}
.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background-color: var(--primary);
  color: #ffffff;
}

/* Header */
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
  z-index: 1030;
}
.navbar-brand {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary) !important;
}
.nav-link {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--text-color) !important;
  padding: 0.5rem 1rem;
  transition: var(--transition);
}
.nav-link:hover {
  color: var(--primary) !important;
}

/* Sections */
section {
  padding: 5rem 0;
  background-color: var(--background);
}
.section-title-container {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}
.section-subtitle {
  display: inline-block;
  background-color: #ffffff;
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--text-color);
  position: relative;
  margin-top: 0.5rem;
}
.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* Background overrides */
.hero-section {
  background: url("../img/hero-bg.jpg") center center/cover no-repeat;
}

.project-section {
  background: url("../img/project-bg.jpg") center center/contain no-repeat, var(--background);
}
.services-section {
  background-color: #ffffff;
}


.policy-section {
  background-color: #ffffff;
}

/* Footer */
.footer-section {
  background-color: var(--text-color);
  color: #ffffff;
  padding: 3rem 0 2rem;
}
.footer-brand {
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
}
.footer-link {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: var(--transition);
}
.footer-link:hover {
  background-color: rgba(255,255,255,0.1);
  color: #ffffff;
}
.footer-email {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--primary);
  font-weight: 600;
}
.footer-divider { background-color: var(--primary); }
.footer-copyright p { color: rgba(255,255,255,0.6); }

/* Inner blocks gradients */
.feature-card,
.service-card,
.advantage-card,
.method-card,
.pricing-plan,
.testimonial-card,
.form-container,
.policy-container {
  background-image: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #ffffff;
}
/* Reset and Variables */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #4A90E2;
  --secondary: #D9534F;
  --background: #F0F8FF;
  --text-color: #333333;
  --light-gray: #ECEFF1;
  --border-color: #BDC3C7;
  --border-radius: 8px;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* Typography */
body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background-color: var(--background);
  color: var(--text-color);
  line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
  font-family: Georgia, serif;
  color: var(--text-color);
}

/* Buttons */
.btn {
  font-family: "Helvetica Neue", Arial, sans-serif;
  padding: 0.8rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: #ffffff;
  border: 2px solid var(--primary);
}
.btn:hover {
  background-color: transparent;
  color: var(--primary);
}
.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background-color: var(--primary);
  color: #ffffff;
}

/* Header */
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-bottom: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  z-index: 1030;
}
.navbar-brand {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff !important;
}
.nav-link {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: rgba(255,255,255,0.9) !important;
  padding: 0.75rem 1rem;
  transition: var(--transition);
}
.nav-link:hover {
  color: #ffffff !important;
  background-color: rgba(255,255,255,0.2);
  border-radius: 4px;
}
}
.navbar-brand {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary) !important;
}
.nav-link {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--text-color) !important;
  padding: 0.5rem 1rem;
  transition: var(--transition);
}
.nav-link:hover {
  color: var(--primary) !important;
}

/* Sections */
section {
  padding: 5rem 0;
  background-color: var(--background);
}
.section-title-container {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}
.section-subtitle {
  display: inline-block;
  background-color: #ffffff;
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--text-color);
  position: relative;
  margin-top: 0.5rem;
}
.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* Background overrides */
.hero-section {
  background: url("../img/hero-bg.jpg") center center/cover no-repeat;
}

.services-section {
  background-color: #ffffff;
}
.advantages-section {
  background: url("../img/advantages-bg.jpg") center center/cover no-repeat, var(--light-gray);
}
.methods-section {
  background-color: #ffffff;
}

.testimonials-section {
  background-color: #ffffff;
}

.policy-section {
  background-color: #ffffff;
}

/* Footer */
.footer-section {
  background-color: var(--text-color);
  color: #ffffff;
  padding: 3rem 0 2rem;
}
.footer-brand {
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
}
.footer-link {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: var(--transition);
}
.footer-link:hover {
  background-color: rgba(255,255,255,0.1);
  color: #ffffff;
}
.footer-email {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--primary);
  font-weight: 600;
}
.footer-divider { background-color: var(--primary); }
.footer-copyright p { color: rgba(255,255,255,0.6); }

/* Inner blocks gradients */
.feature-card,
.service-card,
.advantage-card,
.method-card,
.pricing-plan,
.testimonial-card,
.form-container,
.policy-container {
  background-image: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #ffffff;
}

/* Cookie banner styles */
.cookie-wrapper {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 320px;
  max-width: 90vw;
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  transform: translateY(100%);
}
.cookie-wrapper.show {
  opacity: 1;
  transform: translateY(0);
}
.cookie-wrapper .material-icons {
  font-size: 2.5rem;
  color: var(--secondary);
}
.cookie-wrapper h2 {
  font-family: Georgia, serif;
  font-size: 1.2rem;
  color: var(--text-color);
  text-align: center;
}
.cookie-wrapper .data {
  font-size: 0.95rem;
  color: var(--text-color);
  text-align: center;
}
.cookie-wrapper .data a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
}
.cookie-wrapper .buttons {
  display: flex;
  gap: 0.5rem;
  width: 100%;
}
.cookie-wrapper .cookie-button {
  flex: 1;
  padding: 0.75rem;
  border: none;
  border-radius: var(--border-radius);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.cookie-wrapper #acceptBtn {
  background-color: var(--primary);
  color: #ffffff;
}
.cookie-wrapper #acceptBtn:hover {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}
.cookie-wrapper #declineBtn {
  background-color: var(--secondary);
  color: #ffffff;
}
.cookie-wrapper #declineBtn:hover {
  background-color: transparent;
  color: var(--secondary);
  border: 1px solid var(--secondary);
}
.advantages-section {
  position: relative;
  background: url("../img/advantages-bg.jpg") center center/cover no-repeat, var(--light-gray);
  padding: 6rem 0;
}
.advantage-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.advantage-icon {
  font-size: 4rem;
  color: #ffffff;
  margin-bottom: 1rem;
}
.advantage-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.advantage-card p {
  color: #ffffff;
}

/* Advantages block overrides */
.advantage-card {
  background-color: #ffffff !important;
  color: #333333 !important;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}
.advantage-card p {
  color: #333333 !important;
}
.advantage-icon {
  font-size: 6rem !important;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
}
