/* ==========================================================================
   Allgemein
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #6b8d6d;
    --primary-light: #eef5f1;
    --accent-color: #d4a373;
    --accent-hover: #c69262;
    --text-dark: #2b2d42;
    --text-light: #6c757d;
    --bg-light: #faf8f5;
    --white: #ffffff;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(30, 30, 30, 0.5), rgba(20, 20, 20, 0.8)), 
                url('images/hero-darmgesundheit.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-container {
    max-width: 850px;
    margin: 0 auto;
    color: var(--white);
}

.hero-tagline {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero .hero-container p.hero-trust {
    font-size: 0.85rem;            
    margin-top: 20px;             
    margin-bottom: 0;
    opacity: 0.75;                
    letter-spacing: 0.5px;
    font-weight: 500;
    display: block;
}

.hero-banner {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 10px 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite; 
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 4px 15px rgba(212, 163, 115, 0.4); }
    50% { transform: scale(1.03); box-shadow: 0 6px 25px rgba(212, 163, 115, 0.7); }
    100% { transform: scale(1); box-shadow: 0 4px 15px rgba(212, 163, 115, 0.4); }
}

.hero-dates {
    display: flex;
    align-items: center;
    justify-content: center; 
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    letter-spacing: 0.3px;
}



/* ==========================================================================
   Komponenten & Sections (Allgemein)
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 163, 115, 0.4);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 163, 115, 0.6);
}

section {
    padding: 100px 20px;
    text-align: center;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
	text-align: left;
}

.bg-white {
    background-color: var(--white);
    padding-top: 50px;
    padding-bottom: 50px;
}

.section-title {
    font-size: 2.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0%;
    transform: none;
    width: 240px;
    height: 3px;
    background-color: var(--accent-color);
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   Problem-Section
   ========================================================================== */
.grid-3 {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 30px;
}

.card {
    flex: 1;
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: left;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.35rem;
}

/* ==========================================================================
   Story Section (Über mich)
   ========================================================================== */
.story-section {
    background-color: #f5f2eb; 
    padding: 40px 20px 100px 20px; 
    text-align: left; 
}

.story-grid {
    display: grid;
    grid-template-columns: 45% 55%; 
    gap: 60px;
    align-items: center;
}

.story-image-box {
    position: relative;
}

.story-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(44, 94, 67, 0.08);
}

.story-image-badge {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.story-pretitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.story-title {
    font-size: 2.4rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 700;
}

.story-subtitle {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 600;
    line-height: 1.3;
}

.story-content-box p {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.6;
    opacity: 0.9;
}

.story-link-highlight {
    font-size: 1.05rem;
    background-color: rgba(214, 163, 115, 0.1);
    padding: 12px 20px;
    border-radius: 12px;
    border-left: 3px solid var(--accent-color);
    margin-top: 25px;
}

.story-link-highlight a {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: underline;
}

.story-link-highlight a:hover {
    color: var(--accent-hover);
}

.story-signature {
    margin-top: 30px;
    border-left: 3px solid var(--accent-color);
    padding-left: 15px;
}

.story-signature strong {
    display: block;
    font-size: 1.15rem;
    color: var(--primary-color);
}

.story-signature span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ==========================================================================
   Split-Layout
   ========================================================================== */
.glow-section {
    background-color: var(--primary-light);
}

.package-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1050px;
    margin: 50px auto 0 auto;
    text-align: left;
}

.package-features-card {
    background: var(--white);
    padding: 50px;
    border-radius: 24px;
    border: 1px solid rgba(44, 94, 67, 0.08);
    box-shadow: 0 10px 35px rgba(44, 94, 67, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.package-features-card h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.feature-glow-list {
    list-style: none;
}

.feature-glow-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 22px;
    align-items: flex-start;
}

.list-check {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
    background: var(--primary-light);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-glow-list strong {
    color: var(--text-dark);
    font-size: 1.05rem;
    display: block;
    margin-bottom: 2px;
}

.feature-glow-list p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.4;
    margin: 0;
}

.package-core-card {
    background: var(--white);
    padding: 50px;
    border-radius: 24px;
    border: 1px solid rgba(44, 94, 67, 0.08);
    box-shadow: 0 10px 35px rgba(44, 94, 67, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.package-features-card:hover, .package-core-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(212, 163, 115, 0.25);
}

.package-core-card h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.core-lead {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 25px;
}

.expert-promise {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.promise-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.expert-promise strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.expert-promise p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

/* Preis- und Button-Zone */
.package-price-zone {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.06);
    text-align: center;
}

.price-display {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.price-sub {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

.package-price-zone .btn {
    width: 100%;
    text-align: center;
}

.notice-text {
    font-size: 0.8rem; 
    margin-top: 25px; 
    margin-bottom: 15px; 
    text-align: left;
    color: var(--text-light);
    line-height: 1.4;
}

.testimonial-name {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: #DAA520; 
    font-size: 0.8em;
	font-style: italic;
}

.ts-name {
  color: #6b8d6d;
  margin-top: 10px;	
  font-weight: 700;
  font-size: 12px;
}

/* ==========================================================================
   Alternativangebot
   ========================================================================== */
.alternative-package-link {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin: 50px auto 0 auto;
    max-width: 720px;
    padding: 14px 28px;
    background-color: var(--white);
    border-radius: 50px; 
    box-shadow: 0 4px 20px rgba(44, 94, 67, 0.05);
    text-align: center;
    line-height: 1.6;
    border: 1px solid rgba(44, 94, 67, 0.04);
    transition: all 0.3s ease;
}

.alternative-package-link a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
    margin-left: 4px;
    display: inline-block;
    transition: all 0.3s ease;
}

.alternative-package-link a:hover {
    color: var(--accent-color);
    transform: translateY(-1px);
}

/* ==========================================================================
   Kontakt Section
   ========================================================================== */
.contact-section {
    background-color: #f5f2eb; 
    padding: 80px 20px;
    text-align: center;
    border-top: 1px solid rgba(44, 94, 67, 0.05);
}

.compact-container {
    max-width: 800px; 
    margin: 0 auto;
}

.contact-pretitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-color);
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.contact-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-lead {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.9;
}

.contact-channels {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.contact-card {
    flex: 0 1 320px;
    max-width: 320px;
    background: var(--white);
    padding: 20px 25px;
    border-radius: 16px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    border: 1px solid rgba(44, 94, 67, 0.04);
    box-shadow: 0 4px 15px rgba(44, 94, 67, 0.02);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 25px rgba(212, 163, 115, 0.15);
}

.contact-icon {
    font-size: 1.6rem;
    background: var(--primary-light);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

/* ==========================================================================
   Kontakt-Karten
   ========================================================================== */
.contact-card {
    flex: 1;
    max-width: 320px;
    background: var(--white);
    padding: 20px 25px;
    border-radius: 16px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    border: 1px solid rgba(44, 94, 67, 0.08); 
    box-shadow: 0 4px 15px rgba(44, 94, 67, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); 
}

.contact-card:hover {
    transform: translateY(-6px); 
    border-color: var(--accent-color);
    box-shadow: 0 15px 35px rgba(212, 163, 115, 0.25), 
                0 0 20px rgba(212, 163, 115, 0.1); 
}

.contact-icon {
    font-size: 1.6rem;
    background: var(--primary-light);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: var(--accent-color);
    color: var(--white);
    transform: scale(1.05);
}

.contact-card strong {
    display: block;
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 2px;
    transition: color 0.3s ease;
}

.contact-card:hover strong {
    color: var(--accent-hover);
}

.contact-card span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.cert-logos-container {
  margin-top: 60px;
  text-align: center;
}
.cert-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #888;
  margin-bottom: 25px;
}
.cert-logos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0.7;
}
.cert-logos-grid img {
  max-height: 40px;
  width: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
.cert-logos-grid img:hover {
  filter: grayscale(0%);
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.7); 
    padding: 25px 20px; 
    font-size: 0.85rem;
    text-align: center;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.footer-links {
    margin: 0;
}

footer a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--white);
    text-decoration: underline;
}


/* ==========================================================================
   Responsive Media Queries 
   ========================================================================== */
@media (max-width: 992px) {
    .grid-3 { gap: 20px; }
    .card { padding: 30px 20px; }
    
    .story-grid {
        grid-template-columns: 1fr; 
        gap: 40px;
    }
    
    .story-image-box {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .package-split-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    section { padding: 60px 20px; }
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1.1rem; }
    .hero .hero-container p.hero-trust { font-size: 0.75rem; }
	    .hero-dates {
        font-size: 0.8rem;
        margin-bottom: 20px;
    }
    
    .section-title { font-size: 1.9rem; }
    .story-title { font-size: 2rem; }
    .story-subtitle { font-size: 1.15rem; }
    .story-section { padding: 30px 20px 60px 20px; }
    
    .grid-3 { flex-direction: column; gap: 20px; }
    .card { width: 100%; }
    
    .package-core-card, .package-features-card {
        padding: 30px 20px;
    }
    
    .package-core-card h3 { font-size: 1.4rem; }
    .package-features-card h3 { font-size: 1.3rem; margin-bottom: 20px; }
    .core-lead { font-size: 1.05rem; margin-bottom: 25px; }
    .expert-promise { padding: 15px; gap: 12px; }
    
    .alternative-package-link {
        margin-top: 60px;
        padding: 20px 20px;
        border-radius: 16px; 
        font-size: 0.9rem;
    }
    
    .alternative-package-link a {
        display: inline;
        margin-left: 0;
    }
	.contact-channels {
        flex-direction: column; 
        align-items: center;   
        gap: 15px;           
    }
    
    .contact-card {
        width: 100%;            
        max-width: 400px;    
    }
	
	.cert-logos-grid {
    flex-direction: column; 
    gap: 25px;              
  }

  .cert-logos-grid img {
    max-height: 50px;       
  }
	
	    footer { padding: 20px; }
    .footer-container { flex-direction: column; gap: 10px; }
}

@media only screen and (max-width: 600px) {
    body {
        font-size: 14px; 
    }

    h2 {
        font-size: 1.5em; 
    }

    .btn, .cta-section a {
        font-size: 0.9em !important;
        padding: 10px 20px !important;
    }

    .bonus-box p {
        font-size: 0.9em;
    }
}