/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6b9d;
    --secondary-color: #4ecdc4;
    --accent-color: #9b59b6;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-arrow {
    font-size: 0.75rem;
    transition: var(--transition);
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    list-style: none;
    min-width: 250px;
    box-shadow: var(--shadow-lg);
    border-radius: 10px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: rgba(255, 107, 157, 0.1);
    color: var(--primary-color);
    padding-left: 2rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #fff5f7 0%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,107,157,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -30px) rotate(180deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-svg {
    width: 100%;
    max-width: 400px;
    height: auto;
    animation: fadeInRight 1s ease-out;
}

.face-glow {
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: var(--bg-white);
    transform: translateY(1px);
}

.hero-wave svg {
    width: 100%;
    height: 120px;
    display: block;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    transform: translateY(0);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #ff8fb3);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.6);
}

.btn-secondary {
    background: white;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    background: var(--bg-white);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trust-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), #6ee5dc);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
}

.trust-text {
    font-weight: 600;
    color: var(--text-dark);
}

/* ============================================
   SECTIONS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
}

/* ============================================
   METHODEN SECTION
   ============================================ */
.methoden {
    padding: 6rem 0;
    background: var(--bg-white);
}

.methoden-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.method-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.method-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.method-icon svg {
    width: 100%;
    height: 100%;
}

.method-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.method-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.method-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.method-link:hover {
    gap: 0.5rem;
}

/* ============================================
   PROBLEM-SOLUTION SECTION
   ============================================ */
.problem-solution {
    padding: 6rem 0;
    background: var(--bg-light);
}

.ps-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ps-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.ps-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.ps-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.ps-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.check-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

.before-after {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: center;
}

.ba-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.ba-label {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.ba-card svg {
    width: 150px;
    height: 180px;
}

.ba-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 800;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: 6rem 0;
    background: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-rating {
    color: #ffc107;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
}

.author-location {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary-color);
}

.cta-section .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-section .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.fade-in-delay {
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.fade-in-delay-2 {
    animation: fadeIn 0.8s ease-out 0.4s both;
}

.fade-in-delay-3 {
    animation: fadeIn 0.8s ease-out 0.6s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #fff5f7 0%, #f0f9ff 100%);
    text-align: center;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
}

.page-intro {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============================================
   CONTENT SECTION
   ============================================ */
.content-section {
    padding: 4rem 0;
    background: var(--bg-white);
}

/* ============================================
   PROSE (Typography)
   ============================================ */
.prose {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.prose-enhanced {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.prose-enhanced h2 {
    margin: 2.5rem 0 1rem;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--text-dark);
    font-weight: 700;
}

.prose-enhanced h3 {
    margin: 2rem 0 1rem;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    color: var(--text-dark);
    font-weight: 600;
}

.prose-enhanced p {
    margin: 0 0 1.5rem;
    line-height: 1.8;
    color: var(--text-light);
    font-size: 1.0625rem;
}

.prose p {
    margin: 0 0 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.prose h2 {
    margin: 2rem 0 0.75rem;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.prose h3 {
    margin: 1.5rem 0 0.5rem;
    font-size: 1.125rem;
    color: var(--text-dark);
}

.prose ul {
    padding-left: 1.25rem;
    margin: 0 0 1rem;
}

.prose li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.btn-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-link:hover {
    color: var(--accent-color);
    gap: 1rem;
}

.btn-link span {
    font-size: 1.25rem;
    transition: var(--transition);
}

.btn-link:hover span {
    transform: translateX(4px);
}

.treatment-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.treatment-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
}

.treatment-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 800;
}

/* ============================================
   TREATMENT CARDS
   ============================================ */
.treatment-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

.treatment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.treatment-method-card {
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    padding: 2rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.treatment-method-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.method-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.method-card-header h3 {
    flex: 1;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.method-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.method-badge.best {
    background: linear-gradient(135deg, var(--primary-color), #ff8fb3);
    color: white;
}

.method-badge.natural {
    background: linear-gradient(135deg, var(--secondary-color), #6ee5dc);
    color: white;
}

.method-badge.longterm {
    background: linear-gradient(135deg, var(--accent-color), #b794d4);
    color: white;
}

.method-badge.combo {
    background: linear-gradient(135deg, #ff9800, #ffb74d);
    color: white;
}

.method-features-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.method-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition);
}

.method-feature-item:hover {
    background: rgba(255, 107, 157, 0.1);
    transform: translateX(5px);
}

.method-feature-item .feature-icon {
    color: var(--secondary-color);
    font-weight: 800;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.method-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
}

.method-detail-item {
    text-align: center;
}

.method-detail-item .detail-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.method-detail-item h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.method-detail-item p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.treatment-card {
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
}

.treatment-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.treatment-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.treatment-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
}

.treatment-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.treatment-content {
    padding: 2rem;
}

.treatment-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.treatment-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
}

.detail-item {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.detail-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.25rem;
}

.treatment-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.pros, .cons {
    padding: 1.5rem;
    border-radius: 15px;
}

.pros {
    background: rgba(78, 205, 196, 0.1);
    border-left: 4px solid var(--secondary-color);
}

.cons {
    background: rgba(255, 107, 157, 0.1);
    border-left: 4px solid var(--primary-color);
}

.pros h4, .cons h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.pros ul, .cons ul {
    list-style: none;
    padding: 0;
}

.pros ul li, .cons ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.pros ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 800;
}

.cons ul li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 800;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 4rem;
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-box .btn-primary {
    background: white;
    color: var(--primary-color);
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.product-grid,
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.affiliate-products .products-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem;
    width: 100%;
}

.affiliate-products .container {
    max-width: 1200px;
    width: 100%;
}

@media (max-width: 1024px) {
    .affiliate-products .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .product-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .affiliate-products .products-grid {
        grid-template-columns: 1fr !important;
    }
}

.product-card {
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    min-height: 150px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    font-size: 4rem;
}

.product-image svg {
    width: 100%;
    height: 100%;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.product-rating .rating-stars {
    display: flex;
    gap: 2px;
}

.product-rating .rating-stars .star {
    color: #ffc107;
    font-size: 1rem;
}

.product-rating .rating-stars .star.empty {
    color: var(--border-color);
}

.product-rating .rating-text {
    font-size: 0.875rem;
    color: var(--text-light);
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.product-description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.product-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-link {
    display: block;
    text-align: center;
    padding: 0.75rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition);
}

.product-link:hover {
    background: #ff8fb3;
    transform: scale(1.02);
}

.product-button {
    display: block;
    text-align: center;
    padding: 0.75rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition);
    margin-top: 1rem;
}

.product-button:hover {
    background: #ff8fb3;
    transform: scale(1.02);
}

.product-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: var(--shadow-sm);
}


.affiliate-products {
    margin: 4rem 0;
    padding: 3rem 0;
    background: var(--bg-light);
    border-radius: 20px;
}

.affiliate-products h2 {
    text-align: center;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 2.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.affiliate-products .section-title {
    text-align: center;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.cta-discover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin: 4rem 0;
}

.cta-discover h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    color: white;
}

.cta-discover p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    font-size: 1.125rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ============================================
   BLOG GRID
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.blog-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.blog-title a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.blog-title a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-link:hover {
    gap: 1rem;
}

/* ============================================
   GUIDE CATEGORIES
   ============================================ */
.guide-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.guide-category {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.guide-category:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.guide-category h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.75rem;
}

.guide-list {
    list-style: none;
    padding: 0;
}

.guide-list li {
    margin-bottom: 0.75rem;
}

.guide-list li a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    padding: 0.5rem;
    border-radius: 8px;
}

.guide-list li a::before {
    content: '→';
    margin-right: 0.75rem;
    color: var(--primary-color);
    font-weight: 800;
    transition: var(--transition);
}

.guide-list li a:hover {
    color: var(--primary-color);
    background: rgba(255, 107, 157, 0.1);
    padding-left: 1rem;
}

.guide-list li a:hover::before {
    margin-right: 1rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: var(--transition);
        gap: 1rem;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 0.5rem;
        padding-left: 1rem;
        background: rgba(255, 107, 157, 0.05);
        border-radius: 8px;
    }

    .dropdown-menu a {
        padding: 0.5rem 1rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-image {
        order: -1;
    }

    .hero-stats {
        justify-content: space-around;
        gap: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }

    .trust-items {
        gap: 2rem;
    }

    .ps-content {
        grid-template-columns: 1fr;
    }

    .before-after {
        flex-direction: column;
    }

    .ba-arrow {
        transform: rotate(90deg);
    }

    .methoden-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .treatment-pros-cons {
        grid-template-columns: 1fr;
    }

    .treatment-details {
        grid-template-columns: 1fr;
    }
    
    .method-details-grid {
        grid-template-columns: 1fr;
    }
    
    .treatment-methods-grid {
        grid-template-columns: 1fr;
    }

    .product-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .methoden,
    .problem-solution,
    .testimonials,
    .cta-section {
        padding: 4rem 0;
    }
}

/* ============================================
   TREATMENTS GRID (Card Layout for Gesichtsbereiche)
   ============================================ */
.treatments-section {
    padding: 4rem 0 6rem;
    background: var(--bg-white);
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.treatments-grid .treatment-card {
    background: var(--bg-white) !important;
    border-radius: 16px !important;
    padding: 2.5rem !important;
    box-shadow: var(--shadow-sm) !important;
    border: 1px solid var(--border-color) !important;
    transition: var(--transition) !important;
    display: flex !important;
    flex-direction: column !important;
    text-decoration: none !important;
    color: inherit !important;
    position: relative !important;
    overflow: hidden !important;
}

.treatments-grid .treatment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.treatments-grid .treatment-card:hover,
.treatments-grid .treatment-card:focus {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
    outline: none;
}

.treatments-grid .treatment-card:hover::before,
.treatments-grid .treatment-card:focus::before {
    transform: scaleX(1);
}

.treatments-grid .treatment-card:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

.treatment-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.treatment-icon svg {
    width: 100%;
    height: 100%;
}

.treatments-grid .treatment-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.treatments-grid .treatment-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    flex-grow: 1;
}

.treatment-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    transition: var(--transition);
}

.treatments-grid .treatment-card:hover .treatment-cta,
.treatments-grid .treatment-card:focus .treatment-cta {
    gap: 1rem;
    color: var(--accent-color);
}

.treatment-cta::after {
    content: '→';
    font-size: 1.25rem;
    transition: var(--transition);
}

.treatments-grid .treatment-card:hover .treatment-cta::after,
.treatments-grid .treatment-card:focus .treatment-cta::after {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .treatments-grid {
        grid-template-columns: 1fr;
    }

    .treatments-section {
        padding: 3rem 0 4rem;
    }

    .page-header {
        padding: 120px 0 40px;
    }
}

@media (max-width: 480px) {
    .treatments-grid .treatment-card {
        padding: 2rem;
    }
}

/* ============================================
   ENHANCED INTERACTIVE ELEMENTS FOR STIRNFALTEN PAGE
   ============================================ */

/* Intro Section */
.intro-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.05), rgba(78, 205, 196, 0.05));
    border-radius: 20px;
    border-left: 4px solid var(--primary-color);
}

.intro-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.intro-text:last-child {
    margin-bottom: 0;
}

/* Section Header with Icon */
.section-header-visual {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 3rem 0 2rem;
}

.section-header-visual .section-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    flex-shrink: 0;
}

.section-header-visual h2 {
    margin: 0;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--text-dark);
}

/* Two-Column Layout */
.two-column-section {
    margin: 4rem 0;
}

.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0 3rem;
}

.two-column-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.column-left,
.column-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Visual Box */
.visual-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    margin-top: 1.5rem;
}

.visual-box-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.visual-box-content h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.125rem;
}

/* Timeline */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.25rem;
    position: relative;
}

.timeline-item:not(:last-child) .timeline-dot::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 40px;
    background: var(--border-color);
}

.timeline-content {
    flex: 1;
    color: var(--text-light);
    line-height: 1.6;
}

.timeline-content strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.25rem;
}

/* Causes Grid */
.causes-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.causes-grid {
    display: grid;
    gap: 1rem;
}

.cause-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
}

.cause-item:hover {
    background: rgba(255, 107, 157, 0.1);
    transform: translateX(5px);
}

.cause-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.cause-content h4 {
    margin-bottom: 0.25rem;
    color: var(--text-dark);
    font-size: 1rem;
}

.cause-content p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Comparison Table */
.comparison-section {
    margin: 4rem 0;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    min-width: 800px;
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
}

.comparison-table th {
    padding: 1.25rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.comparison-table td {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

.comparison-table tbody tr:hover {
    background: rgba(255, 107, 157, 0.05);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.method-name {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.method-emoji {
    font-size: 1.5rem;
}

.method-name strong {
    color: var(--text-dark);
    font-size: 1rem;
}

/* Durability Bar */
.durability-bar {
    width: 100%;
    height: 24px;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.durability-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    transition: width 1s ease-out;
    padding: 0 0.5rem;
}

/* Pain Level */
.pain-level {
    display: flex;
    gap: 4px;
}

.pain-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
}

.pain-dot.low {
    background: #4caf50;
    border-color: #4caf50;
}

.pain-dot.medium {
    background: #ff9800;
    border-color: #ff9800;
}

/* Effectiveness Stars */
.effectiveness {
    display: flex;
    gap: 2px;
}

.effectiveness .star {
    color: #ffc107;
    font-size: 1.125rem;
}

.effectiveness .star:not(.filled) {
    color: var(--border-color);
}

.effectiveness .star.filled {
    color: #ffc107;
}

/* Enhanced Method Cards */
.methods-detailed {
    margin: 4rem 0;
}

.method-card.enhanced {
    margin-bottom: 2.5rem;
    padding: 2.5rem;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.method-card.enhanced:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.method-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.method-icon-large {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(155, 89, 182, 0.1));
    border-radius: 20px;
    flex-shrink: 0;
}

.method-header-content {
    flex: 1;
}

.method-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.method-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-stars .star {
    color: #ffc107;
    font-size: 1.125rem;
}

.rating-stars .star.empty {
    color: var(--border-color);
}

.rating-text {
    font-size: 0.875rem;
    color: var(--text-light);
}

.method-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

.method-description {
    color: var(--text-light);
    line-height: 1.8;
}

.method-description p {
    margin-bottom: 1rem;
}

.method-features {
    display: grid;
    gap: 1rem;
}

.method-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.method-feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.method-feature strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.method-feature p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Info Box */
.info-box {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(78, 205, 196, 0.1);
    border-left: 4px solid var(--secondary-color);
    border-radius: 12px;
}

.info-box.success {
    background: rgba(255, 107, 157, 0.1);
    border-left-color: var(--primary-color);
}

.info-box-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
}

.info-box-title span:first-child {
    font-size: 1.25rem;
}

.info-box p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.7;
}

/* Decision List */
.decision-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.decision-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.decision-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.decision-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.decision-item p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Recommendation Box */
.recommendation-box {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.05), rgba(155, 89, 182, 0.05));
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid var(--primary-color);
    text-align: center;
}

.recommendation-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.recommendation-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.recommendation-box p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.recommendation-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.rec-feature {
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

/* Prevention Section */
.prevention-section {
    margin: 4rem 0;
}

.prevention-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.prevention-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.prevention-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.prevention-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.prevention-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.prevention-card p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Conclusion Section */
.conclusion-section {
    margin: 4rem 0;
}

.conclusion-box {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.conclusion-box h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.conclusion-box p {
    font-size: 1.125rem;
    line-height: 1.8;
    opacity: 0.95;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    margin: 4rem 0;
}

.faq-container {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.7;
}

/* Related Links */
.related-links {
    margin: 3rem 0;
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 15px;
}

.related-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.related-links a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Responsive Design for New Elements */
@media (max-width: 768px) {
    .two-column-layout,
    .two-column-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .method-content-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table-wrapper {
        overflow-x: scroll;
    }

    .comparison-table {
        font-size: 0.875rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
    }

    .prevention-grid {
        grid-template-columns: 1fr;
    }

    .section-header-visual {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .section-header-visual .section-icon {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
    
    .causes-grid {
        grid-template-columns: 1fr;
    }
    
    .prose-enhanced {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .intro-section {
        padding: 1.5rem;
    }

    .method-card.enhanced {
        padding: 1.5rem;
    }

    .method-header {
        flex-direction: column;
        gap: 1rem;
    }

    .method-icon-large {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .conclusion-box {
        padding: 2rem 1.5rem;
    }

    .conclusion-box h2 {
        font-size: 1.5rem;
    }

    .recommendation-box {
        padding: 1.5rem;
    }
}

/* ============================================
   ADDITIONAL STYLES FOR NASOLABIALFALTEN PAGE
   ============================================ */

/* Durability Chart */
.durability-chart {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
}

.durability-chart h4 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-size: 1.125rem;
}

.durability-item {
    margin-bottom: 1.5rem;
}

.durability-item:last-child {
    margin-bottom: 0;
}

.durability-label {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.durability-value {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    text-align: right;
}

/* Risks and Safety Section */
.risks-safety-section {
    margin: 4rem 0;
}

.risks-safety-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.safety-card,
.risks-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.safety-card:hover,
.risks-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.safety-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.risks-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.safety-card h3,
.risks-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-align: center;
}

.safety-card p {
    color: var(--text-light);
    line-height: 1.7;
    text-align: center;
    margin: 0;
}

.side-effects-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.side-effect-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.effect-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.side-effect-item span:last-child {
    color: var(--text-light);
    font-size: 0.95rem;
}

.info-box.warning {
    background: rgba(255, 152, 0, 0.1);
    border-left-color: #ff9800;
    margin-top: 1.5rem;
}

.method-result {
    font-style: italic;
    color: var(--text-light);
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(78, 205, 196, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--secondary-color);
}

/* Responsive for Risks Safety Grid */
@media (max-width: 768px) {
    .risks-safety-grid {
        grid-template-columns: 1fr;
    }

    .durability-chart {
        padding: 1rem;
    }
}

/* Botox Page Specific Styles */
.how-botox-works {
    margin: 4rem 0;
}

.treatment-areas-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.treatment-areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.treatment-area-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
}

.treatment-area-item:hover {
    background: rgba(255, 107, 157, 0.1);
    transform: translateY(-2px);
}

.area-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.treatment-area-item h4 {
    margin: 0 0 0.25rem 0;
    color: var(--text-dark);
    font-size: 1rem;
}

.treatment-area-item p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
}

.treatment-process-section {
    margin: 4rem 0;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin: 0 0 0.75rem 0;
    color: var(--text-dark);
    font-size: 1.25rem;
}

.step-content p {
    margin: 0.5rem 0;
    color: var(--text-light);
    line-height: 1.7;
}

.step-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
    color: var(--text-light);
}

.step-content li {
    margin: 0.5rem 0;
}

.benefits-section {
    margin: 4rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-card {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(155, 89, 182, 0.1));
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    margin: 0 0 0.5rem 0;
    color: var(--text-dark);
    font-size: 1.125rem;
}

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

.suitable-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.suitable-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.check-icon {
    color: var(--secondary-color);
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.suitable-item span:last-child {
    color: var(--text-dark);
    line-height: 1.6;
}

.warning-box {
    background: rgba(255, 152, 0, 0.1);
    border-left: 4px solid #ff9800;
    padding: 1.5rem;
    border-radius: 12px;
}

.warning-box ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.warning-box li {
    margin: 0.5rem 0;
    color: var(--text-light);
}

.side-effects-section {
    margin: 4rem 0;
}

.side-effects-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.side-effect-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.effect-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.side-effect-item strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.side-effect-item p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.safety-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-box {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

.info-box.important {
    background: rgba(78, 205, 196, 0.1);
    border-left-color: var(--secondary-color);
}

.frequency-section {
    margin: 4rem 0;
}

.frequency-content {
    margin-top: 2rem;
}

.frequency-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.frequency-visual {
    margin-top: 2rem;
}

.frequency-card {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(255, 107, 157, 0.1));
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--secondary-color);
}

.frequency-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.frequency-card h3 {
    margin: 0 0 1rem 0;
    color: var(--text-dark);
    font-size: 1.25rem;
}

.frequency-card p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.7;
}

/* Responsive Styles for Botox Page */
@media (max-width: 768px) {
    .treatment-areas-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .safety-stats {
        grid-template-columns: 1fr;
    }

    .two-column-content {
        grid-template-columns: 1fr;
    }
}

/* Hyaluron Page Specific Styles */
.treatment-areas-section {
    margin: 4rem 0;
}

.section-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: center;
}

.types-section {
    margin: 4rem 0;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.type-card {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.type-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-md);
}

.type-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.type-card h3 {
    margin: 0 0 1rem 0;
    color: var(--text-dark);
    font-size: 1.25rem;
}

.type-card p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.7;
}

.type-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.type-card a:hover {
    text-decoration: underline;
}

.duration-section {
    margin: 4rem 0;
}

.duration-visual {
    margin-top: 1rem;
}

.duration-card {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(255, 107, 157, 0.1));
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--secondary-color);
}

.duration-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.duration-card h3 {
    margin: 0 0 1rem 0;
    color: var(--text-dark);
    font-size: 1.25rem;
}

.duration-card p {
    margin: 0.5rem 0;
    color: var(--text-light);
    line-height: 1.7;
}

.factors-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.factor-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.factor-item .check-icon {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.factor-item span:last-child {
    color: var(--text-dark);
    line-height: 1.6;
}

.costs-section {
    margin: 4rem 0;
}

.costs-content {
    margin-top: 2rem;
}

.costs-content > p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: center;
}

.costs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.cost-card {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(155, 89, 182, 0.1));
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
}

.cost-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.cost-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cost-card h3 {
    margin: 0 0 1rem 0;
    color: var(--text-dark);
    font-size: 1.25rem;
}

.cost-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 1rem 0;
}

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

/* Responsive Styles for Hyaluron Page */
@media (max-width: 768px) {
    .types-grid {
        grid-template-columns: 1fr;
    }

    .costs-grid {
        grid-template-columns: 1fr;
    }

    .treatment-areas-grid {
        grid-template-columns: 1fr;
    }
}

/* Laserbehandlungen Page Specific Styles */
.sessions-section {
    margin: 4rem 0;
}

.sessions-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.session-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.session-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.session-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.session-item h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-dark);
    font-size: 1.125rem;
}

.session-item p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

.combination-section {
    margin: 4rem 0;
}

.combination-visual {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.combination-card {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(255, 107, 157, 0.1));
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--secondary-color);
    min-width: 150px;
}

.combination-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.combination-card h3 {
    margin: 0 0 0.5rem 0;
    color: var(--text-dark);
    font-size: 1.125rem;
}

.combination-card p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.combination-plus {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.combination-arrow {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.combination-result {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    text-align: center;
    color: white;
    min-width: 200px;
}

.combination-result .combination-icon {
    color: white;
}

.combination-result h3 {
    margin: 0 0 0.5rem 0;
    color: white;
    font-size: 1.125rem;
}

.combination-result p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.info-box.warning {
    background: rgba(255, 152, 0, 0.1);
    border-left-color: #ff9800;
}

/* Responsive Styles for Laserbehandlungen Page */
@media (max-width: 768px) {
    .combination-visual {
        flex-direction: column;
    }

    .combination-plus,
    .combination-arrow {
        transform: rotate(90deg);
    }

    .sessions-list {
        gap: 1rem;
    }

    .session-item {
        flex-direction: column;
        text-align: center;
    }

    .session-icon {
        margin: 0 auto;
    }
}

/* Microneedling Page Specific Styles */
.sessions-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
}

.not-suitable-section {
    margin: 4rem 0;
}

.not-suitable-section .warning-box {
    margin-top: 2rem;
}

/* Responsive Styles for Microneedling Page */
@media (max-width: 768px) {
    .sessions-timeline {
        padding: 1rem;
    }
}

/* Chemisches Peeling Page Specific Styles */
.suitable-for-section {
    margin: 4rem 0;
}

.preparation-section {
    margin: 4rem 0;
}

.aftercare-section {
    margin: 4rem 0;
}

.aftercare-list,
.avoid-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.aftercare-item,
.avoid-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.aftercare-item .check-icon {
    color: var(--secondary-color);
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.avoid-item .warning-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.aftercare-item span:last-child,
.avoid-item span:last-child {
    color: var(--text-dark);
    line-height: 1.6;
}

.regeneration-box {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(255, 107, 157, 0.1));
    border-radius: 15px;
    border-left: 4px solid var(--secondary-color);
}

.regeneration-box .info-box-title {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.regeneration-box p {
    margin: 0.5rem 0;
    color: var(--text-light);
    line-height: 1.7;
}

.peeling-types-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.peeling-type-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
}

.peeling-type-item:hover {
    background: rgba(255, 107, 157, 0.1);
    transform: translateY(-2px);
}

.peeling-type-item .type-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.peeling-type-item h4 {
    margin: 0 0 0.25rem 0;
    color: var(--text-dark);
    font-size: 1rem;
}

.peeling-type-item p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.frequency-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.frequency-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.frequency-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.frequency-item .frequency-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.frequency-item h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-dark);
    font-size: 1.125rem;
}

.frequency-item p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive Styles for Chemisches Peeling Page */
@media (max-width: 768px) {
    .aftercare-list,
    .avoid-list {
        gap: 0.75rem;
    }

    .aftercare-item,
    .avoid-item {
        padding: 0.75rem;
    }

    .frequency-list {
        gap: 1rem;
    }

    .frequency-item {
        flex-direction: column;
        text-align: center;
    }

    .frequency-item .frequency-icon {
        margin: 0 auto;
    }

    .peeling-types-grid {
        gap: 0.75rem;
    }
}

/* Anti-Aging-Routine Page Specific Styles */
.routine-section {
    margin: 4rem 0;
}

.routine-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.routine-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.routine-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.routine-step:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.routine-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.routine-step h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-dark);
    font-size: 1.125rem;
}

.routine-step p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

.ingredients-section {
    margin: 4rem 0;
}

.medical-treatments-section {
    margin: 4rem 0;
}

.lifestyle-section {
    margin: 4rem 0;
}

.lifestyle-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.lifestyle-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.lifestyle-item .check-icon {
    color: var(--secondary-color);
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.lifestyle-item span:last-child {
    color: var(--text-dark);
    line-height: 1.6;
}

/* Responsive Styles for Anti-Aging-Routine Page */
@media (max-width: 768px) {
    .routine-steps {
        gap: 1rem;
    }

    .routine-step {
        flex-direction: column;
        text-align: center;
    }

    .routine-icon {
        margin: 0 auto;
    }

    .lifestyle-list {
        gap: 0.75rem;
    }

    .lifestyle-item {
        padding: 0.75rem;
    }
}

/* Retinol Page Specific Styles */
.application-section {
    margin: 4rem 0;
}

.timeline-section {
    margin: 4rem 0;
}

/* Responsive Styles for Retinol Page */
@media (max-width: 768px) {
    .application-section .process-steps {
        gap: 1.5rem;
    }
}

/* Vitamin C Serum Page Specific Styles */
.how-vitamin-c-works {
    margin: 4rem 0;
}

.vitamin-c-forms {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.form-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
    border-left: 4px solid var(--secondary-color);
    transition: var(--transition);
}

.form-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.form-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.form-item h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-dark);
    font-size: 1.125rem;
}

.form-item p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

.routine-order {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.order-number {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.order-item span {
    color: var(--text-dark);
    line-height: 1.6;
}

.concentration-timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
}

.storage-section {
    margin: 4rem 0;
}

/* Responsive Styles for Vitamin C Serum Page */
@media (max-width: 768px) {
    .vitamin-c-forms {
        gap: 0.75rem;
    }

    .form-item {
        flex-direction: column;
        text-align: center;
    }

    .form-icon {
        margin: 0 auto;
    }

    .routine-order {
        gap: 0.75rem;
    }

    .order-item {
        flex-direction: column;
        text-align: center;
    }

    .order-number {
        margin: 0 auto;
    }
}

/* Anti-Aging-Routine Page Additional Styles */
.mistakes-section {
    margin: 4rem 0;
}

.mistakes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.mistake-card {
    padding: 2rem;
    background: rgba(255, 152, 0, 0.1);
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 152, 0, 0.3);
    transition: var(--transition);
}

.mistake-card:hover {
    transform: translateY(-5px);
    border-color: #ff9800;
    box-shadow: var(--shadow-md);
}

.mistake-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.mistake-card h3 {
    margin: 0 0 0.5rem 0;
    color: var(--text-dark);
    font-size: 1.125rem;
}

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

.type-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.type-card ul li {
    padding: 0.5rem 0;
    color: var(--text-light);
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.type-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.lifestyle-item .check-icon {
    font-size: 1.5rem;
}

/* Responsive Styles for Anti-Aging-Routine Page Additional */
@media (max-width: 768px) {
    .mistakes-grid {
        grid-template-columns: 1fr;
    }

    .type-card ul {
        text-align: left;
    }
}

/* Hyaluron-Produkte Page Specific Styles */
.how-hyaluron-works {
    margin: 4rem 0;
}

.what-to-look-for {
    margin: 4rem 0;
}

.checkpoint-item {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.checkpoint-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.checkpoint-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.checkpoint-content {
    flex: 1;
}

.checkpoint-content h3 {
    margin: 0 0 1rem 0;
    color: var(--text-dark);
    font-size: 1.5rem;
}

.checkpoint-content p {
    margin: 0.75rem 0;
    color: var(--text-light);
    line-height: 1.7;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.ingredient-card {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.ingredient-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.ingredient-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.ingredient-card h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-dark);
    font-size: 1.125rem;
}

.ingredient-card p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
}

.checklist-item .check-icon {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.checklist-item span:last-child {
    color: var(--text-light);
    line-height: 1.6;
}

.application-section {
    margin: 4rem 0;
}

.routine-section {
    margin: 2rem 0;
}

.medical-aesthetics-section {
    margin: 4rem 0;
}

/* Responsive Styles for Hyaluron-Produkte Page */
@media (max-width: 768px) {
    .checkpoint-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .checkpoint-number {
        margin: 0 auto;
    }

    .ingredients-grid {
        grid-template-columns: 1fr;
    }

    .checklist-item {
        flex-direction: column;
        text-align: center;
    }
}

