/********** Template CSS **********/
:root {
  --primary: #2c1810;
  --light: #f4e8d7;
  --dark: #1a0f0a;
  --bg-color: #faf6f0;
  --accent-color: #8b4513;
  --text-color: #5d4e37;
  --white: #ffffff;
  --bg-primary: #f0e6d4;
  --text-primary: #3d2e1f;
  --heading-color: #2c1810;
  --border-radius: 12px;
  --shadow: 0 4px 20px rgba(139, 69, 19, 0.15);
  --gradient-primary: linear-gradient(135deg, #8b4513, #a0522d);
  --gradient-secondary: linear-gradient(135deg, #d2691e, #cd853f);
  --font-primary: 'Playfair Display', serif;
  --font-secondary: 'Poppins', sans-serif;
}

* {
  font-family: var(--font-secondary);
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semi-bold {
  font-weight: 600 !important;
}

.error-message {
  color: #d9534f;
  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: #d9534f !important;
  box-shadow: 0 0 0 0.2rem rgba(217, 83, 79, 0.15) !important;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
  background: var(--gradient-primary);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  transition: all 0.3s ease;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
}

/*** 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;
  font-family: var(--font-secondary);
}

.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;
}

/*** Header Styles ***/
.seelenweg-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--gradient-primary);
  padding: 16px 0;
  box-shadow: 0 4px 20px rgba(139, 69, 19, 0.2);
  backdrop-filter: blur(10px);
}

.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(--white);
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
  font-family: var(--font-primary);
  transition: all 0.3s ease;
}

.header-logo:hover {
  color: var(--light);
  transform: translateY(-2px) scale(1.05);
  text-shadow: 0 2px 8px rgba(244, 232, 215, 0.3);
}

.header-logo .material-icons {
  font-size: 32px;
  margin-right: 12px;
  color: var(--light);
  transition: transform 0.6s ease;
}

.header-logo:hover .material-icons {
  transform: rotate(360deg);
}

.header-nav {
  display: flex;
  gap: 32px;
}

.header-nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--light);
  transform: translateX(-50%);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.header-nav a:hover,
.header-nav a:focus {
  color: var(--light);
  transform: translateY(-2px) scale(1.1);
  text-shadow: 0 2px 4px rgba(244, 232, 215, 0.4);
}

.header-nav a:hover::after,
.header-nav a:focus::after {
  width: 30px;
}

.header-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.header-toggle span {
  height: 3px;
  width: 100%;
  background: var(--white);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.header-toggle:hover span {
  background: var(--light);
  transform: scale(1.1);
}

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

  .header-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--gradient-primary);
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
    backdrop-filter: blur(10px);
  }

  .header-nav.open {
    max-height: 400px;
  }

  .header-nav a {
    padding: 16px 0;
    width: 100%;
    text-align: center;
  }
}

/* Footer Styles */
.seelenweg-footer {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 4rem 1.5rem 2rem;
  font-family: var(--font-secondary);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 2rem;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-branding {
  flex: 1 1 350px;
}

.brand-logo {
  font-family: var(--font-primary);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--light);
  text-decoration: none;
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.brand-logo:hover {
  color: var(--white);
  transform: translateY(-3px) scale(1.05);
  text-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.brand-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--light);
  max-width: 350px;
}

.footer-legal {
  flex: 1 1 300px;
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--font-primary);
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.legal-link:hover {
  color: var(--light);
  transform: translateX(5px) scale(1.05);
  text-shadow: 0 2px 4px rgba(244, 232, 215, 0.3);
}

.icon {
  font-size: 1.2rem;
  color: var(--light);
}

.footer-contact {
  flex: 1 1 300px;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: var(--light);
}

.contact-email,
.contact-phone {
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-email:hover,
.contact-phone:hover {
  color: var(--light);
  text-decoration: underline;
  transform: scale(1.05);
}

.footer-bottom {
  text-align: center;
  font-size: 1rem;
  color: var(--light);
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(244, 232, 215, 0.2);
  padding-top: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 2.5rem;
  }
  .footer-branding,
  .footer-legal,
  .footer-contact {
    flex: 1 1 auto;
    max-width: 100%;
  }
  .brand-description {
    max-width: 100%;
  }
}

/* Cookie Banner */
.cookie-wrapper {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  background: var(--gradient-secondary);
  padding: 25px 30px 30px;
  transition: all 0.3s ease;
  box-shadow: 0 -8px 30px rgba(139, 69, 19, 0.2);
  z-index: 999;
  color: var(--white);
  font-family: var(--font-secondary);
}

.cookie-wrapper.show {
  transform: translateY(0);
}

.cookie-wrapper.hidden {
  transform: translateY(100%);
}

.cookie-wrapper h2 {
  color: var(--white);
  font-family: var(--font-primary);
  margin-bottom: 15px;
}

.cookie-wrapper .data p {
  color: var(--light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.cookie-wrapper .data p a {
  color: var(--white);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-wrapper .data p a:hover {
  color: var(--light);
}

.cookie-wrapper .buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.cookie-button {
  border: 2px solid var(--white);
  color: var(--white);
  padding: 12px 24px;
  background: transparent;
  cursor: pointer;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: var(--font-secondary);
}

.cookie-button:hover {
  background: var(--white);
  color: var(--accent-color);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

#acceptBtn {
  background: var(--white);
  color: var(--accent-color);
}

#acceptBtn:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

@media (max-width: 700px) {
  .cookie-wrapper {
    padding: 20px;
  }
  .cookie-wrapper .buttons {
    flex-direction: column;
  }
}

/* Hero Section */
.hero-section {
  padding: 160px 0 100px;
  background: var(--bg-color);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.05) 0%, rgba(244, 232, 215, 0.1) 100%);
  z-index: 1;
}

.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;
}

.hero-heading {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 2rem;
  line-height: 1.2;
  font-family: var(--font-primary);
  animation: fadeInUp 1s ease-out;
}

.hero-text {
  font-size: 1.3rem;
  color: var(--text-color);
  max-width: 600px;
  margin-bottom: 3rem;
  line-height: 1.7;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-btn {
  display: inline-block;
  padding: 16px 32px;
  background: var(--gradient-primary);
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  animation: fadeInUp 1s ease-out 0.4s both;
  box-shadow: var(--shadow);
}

.hero-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(139, 69, 19, 0.3);
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-side {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  animation: fadeInUp 1s ease-out 0.6s both;
}

@media (min-width: 768px) {
  .hero-stats {
    flex-direction: row;
    gap: 4rem;
  }
}

.stat-block {
  text-align: center;
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.stat-block:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 40px rgba(139, 69, 19, 0.2);
}

.stat-block:hover .stat-value {
  color: var(--heading-color);
  transform: scale(1.1);
  transition: all 0.3s ease;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  font-family: var(--font-primary);
}

.stat-label {
  font-size: 1rem;
  color: var(--text-color);
  margin-top: 0.8rem;
  font-weight: 500;
}

/* About Section */
.about-section {
  background: var(--white);
  padding: 120px 0;
  position: relative;
}

.about-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

@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: 550px;
  height: auto;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.about-image:hover {
  transform: scale(1.02) rotate(1deg);
  box-shadow: 0 15px 50px rgba(139, 69, 19, 0.25);
}

.about-content {
  flex: 1;
}

.about-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 2rem;
  font-family: var(--font-primary);
}

.about-description {
  font-size: 1.2rem;
  color: var(--text-color);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  background: var(--bg-primary);
  padding: 1.5rem 2rem;
  border-radius: var(--border-radius);
  color: var(--text-primary);
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 4px solid var(--accent-color);
}

.highlight-item:hover {
  transform: translateX(10px) scale(1.02);
  background: var(--light);
  box-shadow: 0 8px 25px rgba(139, 69, 19, 0.15);
}

.highlight-item i {
  font-size: 1.6rem;
  color: var(--accent-color);
  margin-right: 1.5rem;
  transition: all 0.6s ease;
}

.highlight-item:hover i {
  transform: scale(1.2) rotate(360deg);
}

/* Tips Section */
.tips-section {
  padding: 120px 0;
  background: var(--bg-color);
}

.tips-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.tips-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  font-family: var(--font-primary);
}

.tips-intro {
  color: var(--text-color);
  font-size: 1.3rem;
  line-height: 1.7;
}

.tips-image-wrapper {
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.tips-image-wrapper:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 50px rgba(139, 69, 19, 0.25);
}

.tips-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.tips-image-wrapper:hover .tips-image {
  transform: scale(1.08) rotate(2deg);
}

.tips-grid {
  margin-top: 40px;
}

.tip-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  margin-bottom: 40px;
  position: relative;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border-top: 4px solid var(--accent-color);
}

.tip-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(139, 69, 19, 0.2);
}

.tip-circle {
  position: absolute;
  top: -20px;
  left: 30px;
  background: var(--gradient-primary);
  color: var(--white);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-family: var(--font-primary);
}

.tip-circle {
  position: absolute;
  top: -20px;
  left: 30px;
  background: var(--gradient-primary);
  color: var(--white);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-family: var(--font-primary);
  transition: all 0.6s ease;
}

.tip-card:hover .tip-circle {
  transform: scale(1.2) rotate(360deg);
}

.tip-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 20px;
  color: var(--heading-color);
  font-family: var(--font-primary);
}

.tip-card:hover .tip-title {
  color: var(--accent-color);
  transform: translateX(5px);
  transition: all 0.3s ease;
}

.tip-description {
  color: var(--text-color);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Pricing Section */
.pricing-section-new {
  padding: 120px 20px;
  background: var(--white);
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  color: var(--heading-color);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 80px;
  font-family: var(--font-primary);
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .pricing-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-box {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.pricing-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.pricing-box:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 70px rgba(139, 69, 19, 0.2);
  border-color: var(--accent-color);
}

.pricing-box.standard {
  transform: scale(1.05);
  border-color: var(--accent-color);
}

.pricing-box.standard:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-box:hover .box-title {
  color: var(--accent-color);
  transform: scale(1.05);
  transition: all 0.3s ease;
}

.pricing-box:hover .box-price {
  transform: scale(1.1);
  transition: all 0.3s ease;
}

.box-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-family: var(--font-primary);
}

.box-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 2rem;
  font-family: var(--font-primary);
}

.box-price span {
  font-size: 1.2rem;
  color: var(--text-color);
  font-weight: 500;
}

.box-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
}

.box-features li {
  padding: 0.8rem 0;
  color: var(--text-color);
  font-size: 1.1rem;
  line-height: 1.6;
  position: relative;
  padding-left: 2rem;
}

.box-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 1.2rem;
}

.box-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--gradient-primary);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  font-size: 1.1rem;
}

.box-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(139, 69, 19, 0.3);
  color: var(--white);
}

.box-button.highlight {
  background: var(--gradient-secondary);
}

.box-button.highlight:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(210, 105, 30, 0.4);
}

/* Advantages Section */
.advantages-section {
  padding: 120px 0;
  background: var(--bg-color);
}

.advantages-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  font-family: var(--font-primary);
}

.advantages-subtitle {
  font-size: 1.3rem;
  color: var(--text-color);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.advantage-box {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  height: 100%;
}

.advantage-box:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(139, 69, 19, 0.2);
}

.advantage-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.advantage-box:hover .advantage-img {
  transform: scale(1.05) rotate(1deg);
}

.advantage-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.advantage-heading {
  font-size: 1.5rem;
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: var(--font-primary);
}

.advantage-box:hover .advantage-heading {
  color: var(--accent-color);
  transform: translateX(5px);
  transition: all 0.3s ease;
}

.advantage-description {
  color: var(--text-color);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Programs Section */
.programs-section {
  padding: 120px 0;
  background: var(--white);
}

.programs-heading {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 4rem;
  color: var(--heading-color);
  font-family: var(--font-primary);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.programs-item {
  border: 2px solid var(--light);
  border-radius: var(--border-radius);
  background: var(--white);
  padding: 3rem 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.programs-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.programs-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(139, 69, 19, 0.15);
  border-color: var(--accent-color);
}

.programs-item:hover .programs-header {
  color: var(--heading-color);
  transform: scale(1.05);
  transition: all 0.3s ease;
}

.programs-item:hover i {
  transform: scale(1.2) rotate(360deg);
  transition: all 0.6s ease;
}

.programs-header {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--accent-color);
  font-family: var(--font-primary);
}

.programs-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.programs-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: var(--text-color);
  line-height: 1.6;
}

.programs-list i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

/* Contact Section */
.seelenweg-contact {
  background: var(--bg-color);
  padding: 120px 15px 100px;
  color: var(--text-color);
}

.seelenweg-title {
  font-weight: 700;
  font-size: 3rem;
  color: var(--heading-color);
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  font-family: var(--font-primary);
}

.seelenweg-intro {
  max-width: 700px;
  margin: 0 auto 4rem;
  font-size: 1.3rem;
  line-height: 1.7;
  text-align: center;
  color: var(--text-color);
  font-style: italic;
}

.contact-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-details {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: var(--white);
  padding: 3rem 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--text-color);
}

.contact-item .icon {
  font-size: 2rem;
  color: var(--accent-color);
}

.contact-item:hover {
  transform: translateX(5px) scale(1.02);
  transition: all 0.3s ease;
}

.contact-item:hover .icon {
  transform: scale(1.2) rotate(360deg);
  transition: all 0.6s ease;
}

.contact-link {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: var(--heading-color);
  text-decoration: underline;
  transform: scale(1.05);
}

.contact-address {
  font-style: normal;
  color: var(--text-color);
}

.contact-form {
  flex: 1 1 450px;
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.1rem;
}

.form-group input {
  padding: 1.2rem 1.5rem;
  font-size: 1.1rem;
  border: 2px solid var(--light);
  border-radius: var(--border-radius);
  outline-offset: 2px;
  transition: all 0.3s ease;
  font-family: inherit;
  color: var(--text-color);
  background: var(--bg-primary);
}

.form-group input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 15px rgba(139, 69, 19, 0.2);
  background: var(--white);
  transform: scale(1.02);
}

.form-group input:hover {
  border-color: var(--accent-color);
  transform: scale(1.02);
  transition: all 0.3s ease;
}

.btn-submit {
  margin-top: 1rem;
  background: var(--gradient-primary);
  color: var(--white);
  font-weight: 700;
  font-size: 1.2rem;
  padding: 1.2rem;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.btn-submit:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(139, 69, 19, 0.3);
}

/* Success Section */
.seelenweg-success {
  background: var(--white);
  padding: 120px 15px 100px;
  color: var(--text-color);
}

.seelenweg-success-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--heading-color);
  letter-spacing: 0.07em;
  font-family: var(--font-primary);
}

.seelenweg-success-intro {
  font-style: italic;
  max-width: 600px;
  margin: 0 auto 4rem;
  font-weight: 500;
  font-size: 1.3rem;
  text-align: center;
  color: var(--text-color);
  line-height: 1.7;
}

.success-cards {
  display: flex;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.success-card {
  background: var(--bg-primary);
  border-radius: var(--border-radius);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow);
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
  border-left: 4px solid var(--accent-color);
}

.success-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 70px rgba(139, 69, 19, 0.2);
  background: var(--light);
}

.success-card:hover .quote-icon {
  transform: scale(1.2) rotate(360deg);
  transition: all 0.6s ease;
}

.success-card:hover .success-text {
  color: var(--heading-color);
  transform: translateX(5px);
  transition: all 0.3s ease;
}

.success-card:hover .success-author {
  color: var(--heading-color);
  transform: translateX(5px);
  transition: all 0.3s ease;
}

.quote-icon {
  position: absolute;
  top: 25px;
  left: 25px;
  background: var(--gradient-primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-size: 1.8rem;
}

.success-text {
  margin-top: 2rem;
  font-style: italic;
  font-weight: 600;
  color: var(--text-color);
  line-height: 1.7;
  min-height: 140px;
  flex-grow: 1;
  font-size: 1.1rem;
}

.success-author {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent-color);
}

.author-icon {
  margin-right: 1rem;
  font-size: 1.6rem;
  color: var(--accent-color);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Privacy Policy Page Styles */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.privacy-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  font-family: var(--font-primary);
  text-align: center;
}

.privacy-intro {
  font-size: 1.2rem;
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  text-align: center;
  font-style: italic;
}

.privacy-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--light);
}

.privacy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.privacy-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1rem;
  font-family: var(--font-primary);
}

.privacy-section h3:hover {
  color: var(--heading-color);
  transform: translateX(5px);
  transition: all 0.3s ease;
}

.privacy-section p {
  font-size: 1.1rem;
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.privacy-section ul {
  margin-left: 1.5rem;
  margin-top: 1rem;
}

.privacy-section li {
  font-size: 1.1rem;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.privacy-section a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.privacy-section a:hover {
  color: var(--heading-color);
  text-decoration: underline;
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-heading {
    font-size: 3rem;
  }
  .about-title,
  .tips-title,
  .pricing-header,
  .advantages-title,
  .programs-heading,
  .seelenweg-title,
  .seelenweg-success-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero-heading {
    font-size: 2.5rem;
  }
  .hero-text {
    font-size: 1.1rem;
  }
  .about-title,
  .tips-title,
  .pricing-header,
  .advantages-title,
  .programs-heading,
  .seelenweg-title,
  .seelenweg-success-title {
    font-size: 2rem;
  }
  .hero-section,
  .about-section,
  .tips-section,
  .pricing-section-new,
  .advantages-section,
  .programs-section,
  .seelenweg-contact,
  .seelenweg-success {
    padding: 80px 0;
  }
  .contact-wrapper {
    flex-direction: column;
  }
  .success-cards {
    flex-direction: column;
    gap: 2rem;
  }
  .programs-grid {
    grid-template-columns: 1fr;
  }
  .pricing-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-heading {
    font-size: 2rem;
  }
  .hero-text {
    font-size: 1rem;
  }
  .about-title,
  .tips-title,
  .pricing-header,
  .advantages-title,
  .programs-heading,
  .seelenweg-title,
  .seelenweg-success-title {
    font-size: 1.8rem;
  }
  .hero-section,
  .about-section,
  .tips-section,
  .pricing-section-new,
  .advantages-section,
  .programs-section,
  .seelenweg-contact,
  .seelenweg-success {
    padding: 60px 0;
  }
}

/* Additional Hover Effects */

/* Back to Top Enhanced Hover */
.back-to-top:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
}

.back-to-top:hover .material-icons {
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

/* Additional Animation Keyframes */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes wiggle {
  0%, 7% {
    transform: rotateZ(0);
  }
  15% {
    transform: rotateZ(-15deg);
  }
  20% {
    transform: rotateZ(10deg);
  }
  25% {
    transform: rotateZ(-10deg);
  }
  30% {
    transform: rotateZ(6deg);
  }
  35% {
    transform: rotateZ(-4deg);
  }
  40%, 100% {
    transform: rotateZ(0);
  }
}

/* Special Hover Effects for Interactive Elements */
.hero-btn:hover {
  animation: pulse 0.6s ease-in-out;
}

.tip-circle:hover {
  animation: bounce 0.6s ease-in-out;
}

.quote-icon:hover {
  animation: wiggle 0.6s ease-in-out;
}

/* Enhanced Focus States */
.form-group input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 15px rgba(139, 69, 19, 0.2);
  background: var(--white);
  transform: scale(1.02);
}

.header-nav a:focus {
  outline: 2px solid var(--light);
  outline-offset: 2px;
}

/* Smooth Transitions for All Elements */
* {
  transition: all 0.3s ease;
}

/* Disable transitions for specific elements that shouldn't animate */
.material-icons,
.stat-value,
.box-price {
  transition: all 0.3s ease;
}