/********** Template CSS **********/
@import url('https://fonts.googleapis.com/css2?family=Amarante&display=swap');

:root {
  --primary: #2C1810;
  --light: #F5E6D3;
  --dark: #1A0F08;
  --bg-color: #FAF7F2;
  --accent-color: #C9A961;
  --text-color: #5A4A3A;
  --white: #ffffff;
  --bg-primary: #E8DCC6;
  --text-primary: #3D2E20;
  --heading-color: #2C1810;
  --border-radius: 0;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

* {
  font-family: 'Amarante', cursive;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semi-bold {
  font-weight: 600 !important;
}

.error-message {
  color: #35dc46;
  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: #35dc46 !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: #35dc46;
}

@media (max-width: 991.98px) {
  .navbar-dark .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }
}

/* Footer Styles - Design Theme */
.innenkraft-footer {
  position: relative;
  background: linear-gradient(135deg, #2C1810 0%, #1A0F08 50%, #3D2E20 100%);
  color: #F5E6D3;
  padding: 4rem 1.5rem 2rem;
  font-family: 'Amarante', cursive;
  overflow: hidden;
}

/* Decorative Elements */
.innenkraft-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, 
    #C9A961 0%, 
    #E8DCC6 25%, 
    #C9A961 50%, 
    #B8954A 75%, 
    #C9A961 100%);
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.innenkraft-footer::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.footer-decorative-shape {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, transparent 100%);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.footer-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 2.5rem;
}

.footer-branding {
  position: relative;
}

.footer-branding::before {
  content: '🎨';
  position: absolute;
  top: -10px;
  left: -10px;
  font-size: 3rem;
  opacity: 0.2;
  z-index: -1;
}

.brand-logo {
  font-family: 'Amarante', cursive;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #C9A961 0%, #E8DCC6 50%, #B8954A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
  position: relative;
}

.brand-logo::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #C9A961, #E8DCC6);
  transition: width 0.3s ease;
}

.brand-logo:hover {
  transform: translateY(-3px) scale(1.05);
}

.brand-logo:hover::after {
  width: 100%;
}

.brand-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #E8DCC6;
  max-width: 320px;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C9A961, #B8954A);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2C1810;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-icon:hover {
  transform: translateY(-5px) rotate(5deg);
  box-shadow: 0 5px 15px rgba(201, 169, 97, 0.4);
}

.footer-legal {
  position: relative;
  background: rgba(201, 169, 97, 0.08);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(201, 169, 97, 0.2);
}

.footer-legal::before {
  content: '⚖️';
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  opacity: 0.3;
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #C9A961, #E8DCC6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #C9A961, transparent);
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-link {
  color: #E8DCC6;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 8px;
  position: relative;
}

.legal-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 100%;
  background: rgba(201, 169, 97, 0.2);
  border-radius: 8px;
  transition: width 0.3s ease;
  z-index: -1;
}

.legal-link:hover {
  color: #C9A961;
  transform: translateX(5px);
}

.legal-link:hover::before {
  width: 100%;
}

.icon {
  font-size: 1.3rem;
  color: #C9A961;
  transition: transform 0.3s ease;
}

.legal-link:hover .icon {
  transform: scale(1.2) rotate(10deg);
}

.footer-contact {
  position: relative;
  background: rgba(232, 220, 198, 0.08);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(232, 220, 198, 0.2);
}

.footer-contact::before {
  content: '📧';
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  opacity: 0.3;
}

.contact-info {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
  font-size: 1rem;
  color: #E8DCC6;
  padding: 0.8rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
}

.contact-info:hover {
  background: rgba(201, 169, 97, 0.1);
  transform: translateX(5px);
}

.contact-info .material-icons-outlined {
  color: #C9A961;
  font-size: 1.5rem;
  min-width: 24px;
}

.contact-email,
.contact-phone {
  color: #E8DCC6;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.contact-email::after,
.contact-phone::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #C9A961;
  transition: width 0.3s ease;
}

.contact-email:hover,
.contact-phone:hover {
  color: #C9A961;
}

.contact-email:hover::after,
.contact-phone:hover::after {
  width: 100%;
}

.footer-bottom {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 0.95rem;
  color: #E8DCC6;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 2px solid rgba(201, 169, 97, 0.3);
  position: relative;
}

.footer-bottom::before {
  content: '✨';
  position: absolute;
  left: 50%;
  top: -15px;
  transform: translateX(-50%);
  font-size: 1.5rem;
  background: linear-gradient(135deg, #2C1810, #1A0F08);
  padding: 0 1rem;
}

.footer-bottom a {
  color: #C9A961;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 0 0.5rem;
}

.footer-bottom a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: #E8DCC6;
  transition: width 0.3s ease;
}

.footer-bottom a:hover {
  color: #E8DCC6;
}

.footer-bottom a:hover::after {
  width: 80%;
}

/* Design Pattern Overlay */
.footer-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.03;
  background-image: 
    repeating-linear-gradient(45deg, #C9A961 0px, #C9A961 1px, transparent 1px, transparent 20px),
    repeating-linear-gradient(-45deg, #E8DCC6 0px, #E8DCC6 1px, transparent 1px, transparent 20px);
  pointer-events: none;
  z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-branding,
  .footer-legal,
  .footer-contact {
    max-width: 100%;
  }
  .brand-description {
    max-width: 100%;
  }
  .innenkraft-footer {
    padding: 3rem 1rem 2rem;
  }
}


/* Google Fonts - Amarante */
@import url('https://fonts.googleapis.com/css2?family=Amarante&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;
}

:root {
  --blue-light: #E8DCC6;
  --blue-dark: #2C1810;
  --text-light: #ffffff;
  --accent: #C9A961;
  --transition: 0.3s ease;
}

.gradient-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(to right, #C9A961, #2C1810);
  padding: 14px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  display: flex;
  align-items: center;
  color: var(--text-light);
  font-size: 1.8rem;
  font-weight: 600;
  text-decoration: none;
}

.header-logo .material-icons {
  font-size: 28px;
  margin-right: 8px;
}

.header-nav {
  display: flex;
  gap: 24px;
}

.header-nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transform: translateX(-50%);
  transition: width var(--transition);
}

.header-nav a:hover,
.header-nav a:focus {
  color: var(--accent);
}

.header-nav a:hover::after,
.header-nav a:focus::after {
  width: 20px;
}

.header-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
}

.header-toggle span {
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
}

@media (max-width: 991.98px) {
  .header-toggle {
    display: flex;
  }

  .header-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, #C9A961, #2C1810);
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
  }

  .header-nav.open {
    max-height: 300px;
  }

  .header-nav a {
    padding: 12px 0;
  }
}


header i {
  color: var(--accent-color);
  font-size: 32px;
  text-align: center;
}

header h2 {
  color: var(--accent-color);
  font-weight: 500;
  text-align: center;
}

.data {
  text-align: center;
}

.data p a {
  color: var(--accent-color);
  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 var(--accent-color);
  color: #fff;
  padding: 8px 0;
  background: var(--accent-color);
  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: var(--accent-color);
}

#declineBtn {
  background-color: #fff;
  color: var(--accent-color);
}

#declineBtn:hover {
  background-color: var(--accent-color);
  color: #fff;
}

/* new styles  */
/* Variables globales */



/* Hero Section - Design Theme */
.hero-section {
  position: relative;
  padding: 180px 0 120px;
  background: linear-gradient(135deg, #FAF7F2 0%, #E8DCC6 30%, #F5E6D3 60%, #FAF7F2 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: 90vh;
}

/* Decorative Elements for Hero */
.hero-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, rgba(184, 149, 74, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.04;
  background-image: 
    repeating-linear-gradient(45deg, #C9A961 0px, #C9A961 1px, transparent 1px, transparent 30px),
    repeating-linear-gradient(-45deg, #B8954A 0px, #B8954A 1px, transparent 1px, transparent 30px);
  pointer-events: none;
  z-index: 1;
}

.hero-decorative-shape {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.2) 0%, transparent 100%);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column-reverse;
  gap: 4rem;
}

@media (min-width: 992px) {
  .hero-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.hero-content {
  flex: 1;
  position: relative;
}

.hero-content::before {
  content: '✨';
  position: absolute;
  top: -30px;
  left: -20px;
  font-size: 3rem;
  opacity: 0.2;
  z-index: -1;
  animation: sparkle 3s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.1); }
}

.hero-heading {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #2C1810 0%, #C9A961 50%, #B8954A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  line-height: 1.2;
  position: relative;
  font-family: 'Amarante', cursive;
}

.hero-heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #C9A961, #E8DCC6, transparent);
  border-radius: 2px;
}

.hero-text {
  font-size: 1.25rem;
  color: #5A4A3A;
  max-width: 600px;
  margin-bottom: 3rem;
  line-height: 1.8;
  font-weight: 400;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #C9A961 0%, #B8954A 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
  position: relative;
  overflow: hidden;
  font-family: 'Amarante', cursive;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.hero-btn:hover::before {
  width: 300px;
  height: 300px;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(201, 169, 97, 0.5);
}

.hero-btn::after {
  content: '→';
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.hero-btn:hover::after {
  transform: translateX(5px);
}

.hero-side {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

/* Hero Design Figure - Animated Design Elements */
.hero-design-figure {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Design Palette */
.design-palette {
  position: relative;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 247, 242, 0.95) 100%);
  border-radius: 50%;
  box-shadow: 0 15px 40px rgba(44, 24, 16, 0.15);
  border: 4px solid rgba(201, 169, 97, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: paletteFloat 6s ease-in-out infinite;
  z-index: 3;
}

@keyframes paletteFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(5deg); }
}

.palette-color {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  animation: colorPulse 3s ease-in-out infinite;
}

.palette-color.color-1 {
  background: linear-gradient(135deg, #C9A961, #B8954A);
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.palette-color.color-2 {
  background: linear-gradient(135deg, #E8DCC6, #F5E6D3);
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  animation-delay: 0.5s;
}

.palette-color.color-3 {
  background: linear-gradient(135deg, #2C1810, #3D2E20);
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 1s;
}

.palette-color.color-4 {
  background: linear-gradient(135deg, #B8954A, #C9A961);
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  animation-delay: 1.5s;
}

@keyframes colorPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.9; }
}

.palette-handle {
  position: absolute;
  width: 60px;
  height: 20px;
  background: linear-gradient(135deg, #C9A961, #B8954A);
  border-radius: 10px;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 3px 10px rgba(201, 169, 97, 0.4);
}

/* Design Brushes */
.design-brush {
  position: absolute;
  width: 8px;
  height: 80px;
  background: linear-gradient(180deg, #2C1810 0%, #3D2E20 100%);
  border-radius: 4px;
  z-index: 2;
}

.design-brush::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 30px;
  background: linear-gradient(135deg, #C9A961, #B8954A);
  border-radius: 50% 50% 0 0;
  box-shadow: 0 3px 8px rgba(201, 169, 97, 0.3);
}

.brush-1 {
  top: 50px;
  right: 80px;
  transform: rotate(-25deg);
  animation: brushMove 4s ease-in-out infinite;
}

.brush-2 {
  bottom: 80px;
  left: 60px;
  transform: rotate(35deg);
  animation: brushMove 5s ease-in-out infinite;
  animation-delay: 1s;
}

@keyframes brushMove {
  0%, 100% { transform: rotate(-25deg) translateY(0px); }
  50% { transform: rotate(-20deg) translateY(-10px); }
}

.brush-2 {
  animation-name: brushMove2;
}

@keyframes brushMove2 {
  0%, 100% { transform: rotate(35deg) translateY(0px); }
  50% { transform: rotate(40deg) translateY(-10px); }
}

/* Design Shapes */
.design-shape {
  position: absolute;
  z-index: 1;
  opacity: 0.7;
  animation: shapeFloat 8s ease-in-out infinite;
}

.shape-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.3), rgba(184, 149, 74, 0.3));
  border-radius: 50%;
  border: 3px solid rgba(201, 169, 97, 0.5);
  top: 30px;
  left: 30px;
  animation-delay: 0s;
}

.shape-triangle {
  width: 0;
  height: 0;
  border-left: 35px solid transparent;
  border-right: 35px solid transparent;
  border-bottom: 60px solid rgba(232, 220, 198, 0.4);
  bottom: 50px;
  right: 40px;
  animation-delay: 2s;
  filter: drop-shadow(0 5px 10px rgba(201, 169, 97, 0.3));
}

.shape-square {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(44, 24, 16, 0.2), rgba(61, 46, 32, 0.2));
  border: 3px solid rgba(201, 169, 97, 0.4);
  transform: rotate(45deg);
  top: 120px;
  right: 20px;
  animation-delay: 4s;
}

@keyframes shapeFloat {
  0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
  33% { transform: translateY(-20px) translateX(10px) rotate(5deg); }
  66% { transform: translateY(-10px) translateX(-10px) rotate(-5deg); }
}

/* Paint Splashes */
.design-paint-splash {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  animation: splashPulse 4s ease-in-out infinite;
}

.splash-1 {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.2) 0%, transparent 70%);
  top: 80px;
  left: 20px;
  animation-delay: 0s;
}

.splash-2 {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(232, 220, 198, 0.25) 0%, transparent 70%);
  bottom: 100px;
  right: 30px;
  animation-delay: 2s;
}

@keyframes splashPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 0.8; }
}


.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 Hero Section */
@media (max-width: 768px) {
  .hero-section {
    padding: 120px 0 80px;
    min-height: auto;
  }

  .hero-heading {
    font-size: 2.5rem;
  }

  .hero-text {
    font-size: 1.1rem;
  }

  .hero-design-figure {
    max-width: 350px;
    height: 350px;
  }

  .design-palette {
    width: 150px;
    height: 150px;
  }

  .palette-color {
    width: 35px;
    height: 35px;
  }

  .design-brush {
    height: 60px;
  }

  .brush-1 {
    top: 30px;
    right: 50px;
  }

  .brush-2 {
    bottom: 50px;
    left: 40px;
  }

  .shape-circle {
    width: 40px;
    height: 40px;
    top: 20px;
    left: 20px;
  }

  .shape-triangle {
    border-left-width: 25px;
    border-right-width: 25px;
    border-bottom-width: 45px;
    bottom: 30px;
    right: 25px;
  }

  .shape-square {
    width: 35px;
    height: 35px;
    top: 80px;
    right: 15px;
  }

  .splash-1 {
    width: 70px;
    height: 70px;
    top: 50px;
    left: 15px;
  }

  .splash-2 {
    width: 80px;
    height: 80px;
    bottom: 60px;
    right: 20px;
  }

  .hero-decorative-shape {
    width: 120px;
    height: 120px;
    top: 10%;
    right: 5%;
  }

  .hero-btn {
    padding: 14px 30px;
    font-size: 1rem;
  }
}

/* About Section - Design Theme */
.about-section {
  position: relative;
  background: linear-gradient(180deg, #F5E6D3 0%, #E8DCC6 50%, #FAF7F2 100%);
  padding: 120px 0;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, 
    #C9A961 0%, 
    #E8DCC6 25%, 
    #B8954A 50%, 
    #C9A961 75%, 
    #E8DCC6 100%);
  background-size: 200% 100%;
  animation: gradientShift 4s ease infinite;
}

.about-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.03;
  background-image: 
    repeating-linear-gradient(45deg, #C9A961 0px, #C9A961 1px, transparent 1px, transparent 30px),
    repeating-linear-gradient(-45deg, #B8954A 0px, #B8954A 1px, transparent 1px, transparent 30px);
  pointer-events: none;
  z-index: 1;
}

.about-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 992px) {
  .about-wrapper {
    flex-direction: row;
    align-items: center;
  }
}

.about-image-wrapper {
  flex: 1;
  text-align: center;
}

.about-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  border-radius: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content {
  flex: 1;
}

.about-title {
  position: relative;
  z-index: 2;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #2C1810 0%, #C9A961 50%, #3D2E20 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  font-family: 'Amarante', cursive;
  position: relative;
  padding-bottom: 20px;
}

.about-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 4px;
  background: linear-gradient(90deg, #C9A961, #E8DCC6, transparent);
  border-radius: 2px;
}

.about-description {
  position: relative;
  z-index: 2;
  color: #5A4A3A;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-highlights {
  position: relative;
  z-index: 2;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 247, 242, 0.9) 100%);
  border-radius: 15px;
  border: 2px solid rgba(201, 169, 97, 0.2);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  transform: translateX(10px);
  border-color: #C9A961;
  box-shadow: 0 5px 15px rgba(201, 169, 97, 0.2);
}

.highlight-item i {
  font-size: 1.5rem;
  color: #C9A961;
}

.highlight-item span {
  color: #5A4A3A;
  font-weight: 500;
}

/* FAQ Items */
.faq-list {
  position: relative;
  z-index: 2;
}

.faq-item {
  margin-bottom: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 247, 242, 0.95) 100%);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(44, 24, 16, 0.1);
  border: 3px solid rgba(201, 169, 97, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #C9A961, #E8DCC6, #B8954A);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.faq-item:hover::before {
  transform: scaleX(1);
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(201, 169, 97, 0.25);
  border-color: #C9A961;
}

.faq-item h3 {
  color: #2C1810;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: 'Amarante', cursive;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.faq-item h3 .material-icons-outlined {
  color: #C9A961;
  font-size: 1.6rem;
}

.faq-item p {
  color: #5A4A3A;
  line-height: 1.8;
  font-size: 1.05rem;
  margin: 0;
}

/* Policy Pages */
.additional-wrapper {
  position: relative;
  z-index: 2;
}

.page__content {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 247, 242, 0.95) 100%);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(44, 24, 16, 0.12);
  border: 3px solid rgba(201, 169, 97, 0.2);
  margin-top: 100px;
  margin-bottom: 50px;
}

.page__content h2 {
  background: linear-gradient(135deg, #2C1810 0%, #C9A961 50%, #3D2E20 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: 'Amarante', cursive;
  position: relative;
  padding-bottom: 15px;
}

.page__content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 4px;
  background: linear-gradient(90deg, #C9A961, #E8DCC6, transparent);
  border-radius: 2px;
}

.page__content h3 {
  color: #2C1810;
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-family: 'Amarante', cursive;
  position: relative;
  padding-left: 15px;
}

.page__content h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 60%;
  background: linear-gradient(180deg, #C9A961, #E8DCC6);
  border-radius: 2px;
}

.page__content p {
  color: #5A4A3A;
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.page__content ul {
  color: #5A4A3A;
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.page__content ul li {
  margin-bottom: 0.5rem;
  position: relative;
}

.page__content ul li::marker {
  color: #C9A961;
}

.page__content a {
  color: #C9A961;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.page__content a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #C9A961, #B8954A);
  transition: width 0.3s ease;
}

.page__content a:hover {
  color: #B8954A;
}

.page__content a:hover::after {
  width: 100%;
}

/* Thanks Page */
.content {
  min-height: 100vh;
  background: linear-gradient(135deg, #FAF7F2 0%, #E8DCC6 30%, #F5E6D3 60%, #FAF7F2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, 
    #C9A961 0%, 
    #E8DCC6 25%, 
    #B8954A 50%, 
    #C9A961 75%, 
    #E8DCC6 100%);
  background-size: 200% 100%;
  animation: gradientShift 4s ease infinite;
}

.wrapper-1 {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 600px;
  padding: 2rem;
}

.wrapper-2 {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 247, 242, 0.95) 100%);
  padding: 3rem;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(44, 24, 16, 0.15);
  border: 3px solid rgba(201, 169, 97, 0.3);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.wrapper-2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #C9A961, #E8DCC6, #B8954A);
}

.wrapper-2 h1 {
  background: linear-gradient(135deg, #2C1810 0%, #C9A961 50%, #3D2E20 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: 'Amarante', cursive;
}

.wrapper-2 p {
  color: #5A4A3A;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.go-home {
  margin-top: 2rem;
  padding: 16px 40px;
  background: linear-gradient(135deg, #C9A961 0%, #B8954A 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
  font-family: 'Amarante', cursive;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.go-home::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.go-home:hover::before {
  width: 300px;
  height: 300px;
}

.go-home:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(201, 169, 97, 0.5);
}

/* Responsive Contact/FAQ Section */
@media (max-width: 768px) {
  .innenkraft-contact {
    padding: 80px 15px;
  }

  .innenkraft-title {
    font-size: 2.2rem;
  }

  .innenkraft-intro {
    font-size: 1.1rem;
  }

  .contact-decorative-shape {
    width: 100px;
    height: 100px;
    bottom: 30px;
    left: 30px;
  }

  .faq-item {
    padding: 1.5rem;
  }

  .faq-item h3 {
    font-size: 1.2rem;
  }
}

/* Responsive About Section */
@media (max-width: 768px) {
  .about-section {
    padding: 80px 0;
  }

  .about-title {
    font-size: 2.2rem;
  }

  .about-description {
    font-size: 1.1rem;
  }
}

/* Responsive Policy Pages */
@media (max-width: 768px) {
  .page__content {
    padding: 2rem 1.5rem;
    margin-top: 80px;
  }

  .page__content h2 {
    font-size: 2rem;
  }

  .page__content h3 {
    font-size: 1.4rem;
  }
}

/* Responsive Thanks Page */
@media (max-width: 768px) {
  .wrapper-2 {
    padding: 2rem 1.5rem;
  }

  .wrapper-2 h1 {
    font-size: 2.5rem;
  }

  .wrapper-2 p {
    font-size: 1.1rem;
  }
}

.highlight-item {
  display: flex;
  align-items: center;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  color: #143322;
  font-weight: 500;
}

.highlight-item i {
  font-size: 1.4rem;
  color: var(--light);
  margin-right: 1rem;
}


/* Styles pour le bloc Programmes */
/* Programs Section - Design Theme */
.programs-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg, #F5E6D3 0%, #E8DCC6 50%, #FAF7F2 100%);
  overflow: hidden;
}

.programs-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, 
    #C9A961 0%, 
    #E8DCC6 25%, 
    #B8954A 50%, 
    #C9A961 75%, 
    #E8DCC6 100%);
  background-size: 200% 100%;
  animation: gradientShift 4s ease infinite;
}

.programs-section::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.programs-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.03;
  background-image: 
    repeating-linear-gradient(45deg, #C9A961 0px, #C9A961 1px, transparent 1px, transparent 30px),
    repeating-linear-gradient(-45deg, #B8954A 0px, #B8954A 1px, transparent 1px, transparent 30px);
  pointer-events: none;
  z-index: 1;
}

.programs-decorative-shape {
  position: absolute;
  bottom: 80px;
  right: 80px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(232, 220, 198, 0.25) 0%, transparent 100%);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  z-index: 1;
  animation: float 7s ease-in-out infinite;
}

.programs-wrapper {
  position: relative;
  z-index: 2;
}

.programs-heading {
  text-align: center;
  font-size: 3.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #2C1810 0%, #C9A961 50%, #3D2E20 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4rem;
  font-family: 'Amarante', cursive;
  position: relative;
  padding-bottom: 25px;
}

.programs-heading::before {
  content: '📚';
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 4rem;
  opacity: 0.15;
  z-index: -1;
}

.programs-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #C9A961, #E8DCC6, #C9A961, transparent);
  border-radius: 2px;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

.programs-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 247, 242, 0.95) 100%);
  border: 3px solid rgba(201, 169, 97, 0.2);
  border-radius: 25px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  box-shadow: 0 15px 40px rgba(44, 24, 16, 0.12);
  position: relative;
  overflow: hidden;
}

.programs-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #C9A961, #E8DCC6, #B8954A);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.programs-item:hover::before {
  transform: scaleX(1);
}

.programs-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(201, 169, 97, 0.25);
  border-color: #C9A961;
}

.programs-header {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #2C1810, #C9A961);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Amarante', cursive;
  position: relative;
  padding-left: 20px;
}

.programs-header::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 70%;
  background: linear-gradient(180deg, #C9A961, #E8DCC6);
  border-radius: 3px;
}

.programs-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.programs-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  color: #5A4A3A;
  line-height: 1.6;
  font-weight: 400;
}

.programs-list i {
  font-size: 1.5rem;
  color: #C9A961;
  margin-top: 2px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.programs-item:hover .programs-list i {
  transform: scale(1.2) rotate(5deg);
}


/* 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 - Design Theme */
.advantages-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg, #FAF7F2 0%, #E8DCC6 50%, #F5E6D3 100%);
  overflow: hidden;
}

.advantages-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, 
    #C9A961 0%, 
    #E8DCC6 25%, 
    #B8954A 50%, 
    #C9A961 75%, 
    #E8DCC6 100%);
  background-size: 200% 100%;
  animation: gradientShift 4s ease infinite;
}

.advantages-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.advantages-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.03;
  background-image: 
    repeating-linear-gradient(60deg, #C9A961 0px, #C9A961 1px, transparent 1px, transparent 25px),
    repeating-linear-gradient(-60deg, #B8954A 0px, #B8954A 1px, transparent 1px, transparent 25px);
  pointer-events: none;
  z-index: 1;
}

.advantages-decorative-shape {
  position: absolute;
  top: 100px;
  left: 50px;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgba(232, 220, 198, 0.3) 0%, transparent 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  z-index: 1;
  animation: float 8s ease-in-out infinite;
}

.advantages-title {
  position: relative;
  z-index: 2;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #2C1810 0%, #C9A961 50%, #3D2E20 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  font-family: 'Amarante', cursive;
  text-align: center;
  position: relative;
  padding-bottom: 20px;
}

.advantages-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #C9A961, #E8DCC6, #C9A961, transparent);
  border-radius: 2px;
}

.advantages-subtitle {
  position: relative;
  z-index: 2;
  font-size: 1.3rem;
  color: #5A4A3A;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  text-align: center;
}

.advantage-box {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 247, 242, 0.95) 100%);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(44, 24, 16, 0.12);
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  border: 3px solid rgba(201, 169, 97, 0.2);
}

.advantage-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #C9A961, #E8DCC6, #B8954A);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 1;
}

.advantage-box:hover::before {
  transform: scaleX(1);
}

.advantage-box:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(201, 169, 97, 0.25);
  border-color: #C9A961;
}

.advantage-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
  position: relative;
}

.advantage-box:hover .advantage-img {
  transform: scale(1.1);
}

.advantage-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 247, 242, 0.98) 100%);
}

.advantage-heading {
  font-size: 1.6rem;
  background: linear-gradient(135deg, #2C1810, #C9A961);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: 'Amarante', cursive;
  position: relative;
  padding-left: 15px;
}

.advantage-heading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 60%;
  background: linear-gradient(180deg, #C9A961, #E8DCC6);
  border-radius: 2px;
}

.advantage-description {
  color: #5A4A3A;
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 400;
}

/* Success Section - Design Theme */
.dg-success {
  position: relative;
  background: linear-gradient(180deg, #F5E6D3 0%, #E8DCC6 50%, #FAF7F2 100%);
  padding: 120px 15px;
  color: #5A4A3A;
  font-family: 'Amarante', cursive;
  overflow: hidden;
}

.dg-success::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, 
    #C9A961 0%, 
    #E8DCC6 25%, 
    #B8954A 50%, 
    #C9A961 75%, 
    #E8DCC6 100%);
  background-size: 200% 100%;
  animation: gradientShift 4s ease infinite;
}

.dg-success::after {
  content: '';
  position: absolute;
  top: 20%;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.success-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.03;
  background-image: 
    repeating-linear-gradient(45deg, #C9A961 0px, #C9A961 1px, transparent 1px, transparent 30px),
    repeating-linear-gradient(-45deg, #B8954A 0px, #B8954A 1px, transparent 1px, transparent 30px);
  pointer-events: none;
  z-index: 1;
}

.success-decorative-shape {
  position: absolute;
  bottom: 50px;
  right: 50px;
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, rgba(232, 220, 198, 0.25) 0%, transparent 100%);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  z-index: 1;
  animation: float 7s ease-in-out infinite;
}

.dg-success-title {
  position: relative;
  z-index: 2;
  font-size: 3.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #2C1810 0%, #C9A961 50%, #3D2E20 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 1.5rem;
  font-family: 'Amarante', cursive;
  position: relative;
  padding-bottom: 25px;
}

.dg-success-title::before {
  content: '💬';
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 4rem;
  opacity: 0.15;
  z-index: -1;
}

.dg-success-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #C9A961, #E8DCC6, #C9A961, transparent);
  border-radius: 2px;
}

.dg-success-intro {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto 4rem;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.8;
  text-align: center;
  color: #5A4A3A;
  font-style: normal;
}

.success-cards {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.success-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 247, 242, 0.95) 100%);
  border-radius: 25px;
  padding: 2.5rem;
  box-shadow: 0 15px 40px rgba(44, 24, 16, 0.12);
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s ease;
  border: 3px solid rgba(201, 169, 97, 0.2);
  overflow: hidden;
}

.success-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #C9A961, #E8DCC6, #B8954A);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.success-card:hover::before {
  transform: scaleX(1);
}

.success-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(201, 169, 97, 0.25);
  border-color: #C9A961;
}

.quote-icon {
  position: absolute;
  top: 25px;
  left: 25px;
  background: linear-gradient(135deg, #C9A961 0%, #B8954A 100%);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 5px 15px rgba(201, 169, 97, 0.4);
  border: 3px solid #fff;
  transition: all 0.3s ease;
  z-index: 1;
}

.success-card:hover .quote-icon {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 8px 20px rgba(201, 169, 97, 0.5);
}

.success-text {
  margin-top: 2.5rem;
  font-style: italic;
  font-weight: 500;
  color: #5A4A3A;
  line-height: 1.8;
  min-height: 120px;
  flex-grow: 1;
  font-size: 1.1rem;
  position: relative;
  padding-left: 20px;
}

.success-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 3rem;
  color: #C9A961;
  opacity: 0.3;
  font-family: serif;
  line-height: 1;
}

.success-author {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #2C1810;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(201, 169, 97, 0.2);
}

.author-icon {
  margin-right: 0.75rem;
  font-size: 1.5rem;
  color: #C9A961;
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, transparent 100%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Responsive Success Section */
@media (max-width: 900px) {
  .dg-success {
    padding: 80px 15px;
  }

  .dg-success-title {
    font-size: 2.2rem;
  }

  .dg-success-intro {
    font-size: 1.1rem;
    margin-bottom: 3rem;
  }

  .success-cards {
    flex-direction: column;
    gap: 2rem;
    max-width: 100%;
  }

  .success-card {
    flex: 1 1 auto;
    padding: 2rem 1.5rem;
    min-height: auto;
  }

  .success-text {
    min-height: auto;
    margin-top: 2rem;
  }

  .success-decorative-shape {
    width: 120px;
    height: 120px;
    bottom: 30px;
    right: 30px;
  }
}


/* Styles pour le bloc Conseils pratiques */
/* Tips Section - Design Theme */
.tips-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg, #FAF7F2 0%, #E8DCC6 50%, #F5E6D3 100%);
  overflow: hidden;
}

.tips-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, 
    #C9A961 0%, 
    #E8DCC6 25%, 
    #B8954A 50%, 
    #C9A961 75%, 
    #E8DCC6 100%);
  background-size: 200% 100%;
  animation: gradientShift 4s ease infinite;
}

.tips-section::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.tips-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.03;
  background-image: 
    repeating-linear-gradient(60deg, #C9A961 0px, #C9A961 1px, transparent 1px, transparent 25px),
    repeating-linear-gradient(-60deg, #B8954A 0px, #B8954A 1px, transparent 1px, transparent 25px);
  pointer-events: none;
  z-index: 1;
}

.tips-decorative-elements {
  position: absolute;
  bottom: 50px;
  left: 50px;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgba(232, 220, 198, 0.3) 0%, transparent 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  z-index: 1;
  animation: float 8s ease-in-out infinite;
}

.tips-header {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px;
}

.tips-header::before {
  content: '🎨';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 4rem;
  opacity: 0.15;
  z-index: -1;
}

.tips-title {
  font-size: 3.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #2C1810 0%, #C9A961 50%, #3D2E20 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 25px;
  font-family: 'Amarante', cursive;
  position: relative;
  padding-bottom: 20px;
}

.tips-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #C9A961, #E8DCC6, #C9A961, transparent);
  border-radius: 2px;
}

.tips-intro {
  color: #5A4A3A;
  font-size: 1.3rem;
  line-height: 1.8;
  font-weight: 400;
  margin-top: 20px;
}

.tips-images {
  position: relative;
  z-index: 2;
  margin-bottom: 60px !important;
}

.tips-image-wrapper {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(44, 24, 16, 0.15);
  position: relative;
  border: 3px solid transparent;
  background: linear-gradient(135deg, #C9A961, #E8DCC6);
  padding: 3px;
  transition: all 0.4s ease;
}

.tips-image-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  z-index: 1;
}

.tips-image-wrapper:hover::before {
  left: 100%;
}

.tips-image-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(201, 169, 97, 0.3);
}

.tips-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 17px;
  position: relative;
  z-index: 0;
}

.tips-image-wrapper:hover .tips-image {
  transform: scale(1.08);
}

.tips-grid {
  position: relative;
  z-index: 2;
  margin-top: 40px;
}

.tip-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 247, 242, 0.95) 100%);
  border-radius: 20px;
  padding: 35px;
  margin-bottom: 35px;
  position: relative;
  box-shadow: 0 10px 30px rgba(44, 24, 16, 0.1);
  transition: all 0.4s ease;
  border: 2px solid rgba(201, 169, 97, 0.2);
  overflow: hidden;
}

.tip-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #C9A961, #E8DCC6, #B8954A);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.tip-card:hover::before {
  transform: scaleX(1);
}

.tip-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(201, 169, 97, 0.25);
  border-color: #C9A961;
}

.tip-circle {
  position: absolute;
  top: -25px;
  left: 35px;
  background: linear-gradient(135deg, #C9A961 0%, #B8954A 100%);
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 5px 15px rgba(201, 169, 97, 0.4);
  border: 3px solid #fff;
  transition: all 0.3s ease;
  font-family: 'Amarante', cursive;
}

.tip-card:hover .tip-circle {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 8px 20px rgba(201, 169, 97, 0.5);
}

.tip-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #2C1810, #C9A961);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Amarante', cursive;
  position: relative;
  padding-left: 15px;
}

.tip-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 60%;
  background: linear-gradient(180deg, #C9A961, #E8DCC6);
  border-radius: 2px;
}

.tip-description {
  color: #5A4A3A;
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 400;
}

/* Responsive Tips Section */
@media (max-width: 768px) {
  .tips-section {
    padding: 80px 0;
  }

  .tips-title {
    font-size: 2.2rem;
  }

  .tips-intro {
    font-size: 1.1rem;
  }

  .tips-image {
    height: 250px;
  }

  .tip-card {
    padding: 25px;
    margin-bottom: 25px;
  }

  .tip-circle {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    top: -20px;
    left: 25px;
  }

  .tip-title {
    font-size: 1.4rem;
  }

  .tip-description {
    font-size: 1rem;
  }

  .tips-decorative-elements {
    width: 100px;
    height: 100px;
    bottom: 30px;
    left: 30px;
  }
}


/* Styles pour le bloc Tarifs */
/* Pricing Section - Design Theme */
.pricing-section-new {
  position: relative;
  padding: 120px 20px;
  background: linear-gradient(180deg, #F5E6D3 0%, #E8DCC6 50%, #FAF7F2 100%);
  overflow: hidden;
}

.pricing-section-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, 
    #C9A961 0%, 
    #E8DCC6 25%, 
    #B8954A 50%, 
    #C9A961 75%, 
    #E8DCC6 100%);
  background-size: 200% 100%;
  animation: gradientShift 4s ease infinite;
}

.pricing-section-new::after {
  content: '';
  position: absolute;
  top: 20%;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.pricing-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.03;
  background-image: 
    repeating-linear-gradient(45deg, #C9A961 0px, #C9A961 1px, transparent 1px, transparent 30px),
    repeating-linear-gradient(-45deg, #B8954A 0px, #B8954A 1px, transparent 1px, transparent 30px);
  pointer-events: none;
  z-index: 1;
}

.pricing-decorative-shape {
  position: absolute;
  bottom: 50px;
  right: 50px;
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, rgba(232, 220, 198, 0.25) 0%, transparent 100%);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  z-index: 1;
  animation: float 7s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.pricing-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  background: linear-gradient(135deg, #2C1810 0%, #C9A961 50%, #3D2E20 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 30px;
  font-family: 'Amarante', cursive;
  position: relative;
  padding-bottom: 25px;
}

.pricing-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #C9A961, #E8DCC6, #C9A961, transparent);
  border-radius: 2px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .pricing-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-box {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 247, 242, 0.95) 100%);
  border-radius: 25px;
  padding: 2.5rem;
  box-shadow: 0 15px 40px rgba(44, 24, 16, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 3px solid rgba(201, 169, 97, 0.2);
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}

.pricing-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #C9A961, #E8DCC6, #B8954A);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.pricing-box:hover::before {
  transform: scaleX(1);
}

.pricing-box:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(201, 169, 97, 0.25);
  border-color: #C9A961;
}

.pricing-box.standard {
  border: 3px solid #C9A961;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 247, 242, 0.98) 100%);
  box-shadow: 0 20px 50px rgba(201, 169, 97, 0.3);
}

.pricing-box.standard::before {
  transform: scaleX(1);
}

.box-title {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #2C1810, #C9A961);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  font-family: 'Amarante', cursive;
}

.box-price {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #C9A961, #B8954A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  font-family: 'Amarante', cursive;
}

.box-price span {
  font-size: 1.2rem;
  color: #5A4A3A;
  -webkit-text-fill-color: #5A4A3A;
}

.box-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  flex-grow: 1;
}

.box-features li {
  padding: 0.75rem 0;
  color: #5A4A3A;
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
  padding-left: 25px;
}

.box-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #C9A961;
  font-weight: 700;
  font-size: 1.2rem;
}

.box-button {
  display: block;
  text-align: center;
  padding: 16px 30px;
  background: linear-gradient(135deg, #C9A961 0%, #B8954A 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
  margin-top: 1.5rem;
  font-family: 'Amarante', cursive;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.box-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.box-button:hover::before {
  width: 300px;
  height: 300px;
}

.box-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(201, 169, 97, 0.5);
}

.box-button.highlight {
  background: linear-gradient(135deg, #B8954A 0%, #C9A961 100%);
  box-shadow: 0 10px 25px rgba(201, 169, 97, 0.4);
}

/* Pricing Example Box */
.pricing-example-box {
  margin-top: 50px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 247, 242, 0.95) 100%);
  padding: 35px;
  border-radius: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  border: 3px solid rgba(201, 169, 97, 0.3);
  box-shadow: 0 10px 30px rgba(44, 24, 16, 0.1);
  position: relative;
  z-index: 2;
}

.pricing-example-box h3 {
  text-align: center;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #2C1810, #C9A961);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Amarante', cursive;
  font-size: 1.6rem;
}

/* Responsive Pricing Section */
@media (max-width: 768px) {
  .pricing-section-new {
    padding: 80px 15px;
  }

  .pricing-header {
    font-size: 2.2rem;
  }

  .pricing-cards {
    gap: 2rem;
  }

  .pricing-box {
    padding: 2rem;
  }

  .box-title {
    font-size: 1.5rem;
  }

  .box-price {
    font-size: 2rem;
  }

  .pricing-decorative-shape {
    width: 120px;
    height: 120px;
    bottom: 30px;
    right: 30px;
  }

  .pricing-example-box {
    padding: 25px;
    margin-top: 40px;
  }

  .pricing-example-box div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
}

/* Responsive Advantages Section */
@media (max-width: 768px) {
  .advantages-section {
    padding: 80px 0;
  }

  .advantages-title {
    font-size: 2.2rem;
  }

  .advantages-subtitle {
    font-size: 1.1rem;
  }

  .advantage-box {
    margin-bottom: 2rem;
  }

  .advantage-img {
    height: 200px;
  }

  .advantages-decorative-shape {
    width: 100px;
    height: 100px;
    top: 50px;
    left: 30px;
  }
}

/* Responsive Programs Section */
@media (max-width: 768px) {
  .programs-section {
    padding: 80px 0;
  }

  .programs-heading {
    font-size: 2.2rem;
  }

  .programs-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .programs-item {
    padding: 2rem;
  }

  .programs-header {
    font-size: 1.4rem;
  }

  .programs-decorative-shape {
    width: 120px;
    height: 120px;
    bottom: 50px;
    right: 50px;
  }
}
/* Contact/FAQ Section - Design Theme */
.innenkraft-contact {
  position: relative;
  background: linear-gradient(180deg, #FAF7F2 0%, #E8DCC6 50%, #F5E6D3 100%);
  padding: 120px 15px;
  color: #5A4A3A;
  overflow: hidden;
}

.innenkraft-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, 
    #C9A961 0%, 
    #E8DCC6 25%, 
    #B8954A 50%, 
    #C9A961 75%, 
    #E8DCC6 100%);
  background-size: 200% 100%;
  animation: gradientShift 4s ease infinite;
}

.innenkraft-contact::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.contact-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.03;
  background-image: 
    repeating-linear-gradient(45deg, #C9A961 0px, #C9A961 1px, transparent 1px, transparent 30px),
    repeating-linear-gradient(-45deg, #B8954A 0px, #B8954A 1px, transparent 1px, transparent 30px);
  pointer-events: none;
  z-index: 1;
}

.contact-decorative-shape {
  position: absolute;
  bottom: 50px;
  left: 50px;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgba(232, 220, 198, 0.3) 0%, transparent 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  z-index: 1;
  animation: float 8s ease-in-out infinite;
}

.innenkraft-title {
  position: relative;
  z-index: 2;
  font-weight: 700;
  font-size: 3rem;
  background: linear-gradient(135deg, #2C1810 0%, #C9A961 50%, #3D2E20 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 1.5rem;
  font-family: 'Amarante', cursive;
  position: relative;
  padding-bottom: 20px;
}

.innenkraft-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #C9A961, #E8DCC6, #C9A961, transparent);
  border-radius: 2px;
}

.innenkraft-intro {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.3rem;
  line-height: 1.8;
  text-align: center;
  color: #5A4A3A;
  font-weight: 400;
}

.contact-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-wrapper {
  position: relative;
  z-index: 2;
}

.contact-details {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 247, 242, 0.95) 100%);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(44, 24, 16, 0.12);
  border: 3px solid rgba(201, 169, 97, 0.2);
  position: relative;
  overflow: hidden;
}

.contact-details::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #C9A961, #E8DCC6, #B8954A);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.contact-details:hover::before {
  transform: scaleX(1);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-weight: 600;
  font-size: 1.1rem;
  color: #5A4A3A;
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateX(5px);
}

.contact-item .icon {
  font-size: 28px;
  color: #C9A961;
  flex-shrink: 0;
}

.contact-link {
  color: #5A4A3A;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.contact-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #C9A961, #B8954A);
  transition: width 0.3s ease;
}

.contact-link:hover {
  color: #C9A961;
}

.contact-link:hover::after {
  width: 100%;
}

.contact-address {
  font-style: normal;
  color: #5A4A3A;
  line-height: 1.6;
}

.contact-form {
  flex: 1 1 400px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 247, 242, 0.95) 100%);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 15px 40px rgba(44, 24, 16, 0.12);
  border: 3px solid rgba(201, 169, 97, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #C9A961, #E8DCC6, #B8954A);
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1rem;
}

.form-group input,
.form-group textarea {
  padding: 0.9rem 1rem;
  font-size: 1rem;
  border: 2px solid rgba(201, 169, 97, 0.3);
  border-radius: 12px;
  outline-offset: 2px;
  transition: all 0.3s ease;
  font-family: inherit;
  color: #5A4A3A;
  background: rgba(255, 255, 255, 0.8);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #C9A961;
  box-shadow: 0 0 15px rgba(201, 169, 97, 0.3);
  background: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
}

.error-message {
  color: #d9534f;
  font-size: 0.85rem;
  margin-top: 4px;
  min-height: 18px;
  font-weight: 600;
}

.btn-submit {
  margin-top: 1rem;
  background: var(--accent-color);
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 1rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: 'Amarante', cursive;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.btn-submit:hover {
  background: #B8954A;
}

@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }
}


.error-message {
  color: #35dc46;
  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;
  }
}