:root {
    --gold-primary: #D4AF37;
    --gold-light: #F4E4C1;
    --gold-dark: #B8941F;
    --gold-accent: #FFD700;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --bg-light: #FAFAFA;
    --bg-cream: #FFF9F0;
    --white: #FFFFFF;
    --shadow-light: 0 2px 10px rgba(212, 175, 55, 0.1);
    --shadow-medium: 0 5px 20px rgba(212, 175, 55, 0.15);
    --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#gold-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.gold-particle {
    position: absolute;
    background: radial-gradient(circle, var(--gold-accent) 0%, var(--gold-primary) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    animation: glitter-sparkle 4s ease-in-out infinite;
}

@keyframes glitter-sparkle {
    0% {
        opacity: 0;
        transform: scale(0);
        box-shadow: 0 0 0px var(--gold-accent);
    }
    20% {
        opacity: 0.8;
        transform: scale(1);
        box-shadow: 0 0 8px var(--gold-accent), 0 0 16px var(--gold-primary);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
        box-shadow: 0 0 12px var(--gold-accent), 0 0 24px var(--gold-primary), 0 0 36px rgba(255, 215, 0, 0.6);
    }
    80% {
        opacity: 0.6;
        transform: scale(0.8);
        box-shadow: 0 0 6px var(--gold-accent), 0 0 12px var(--gold-primary);
    }
    100% {
        opacity: 0;
        transform: scale(0);
        box-shadow: 0 0 0px var(--gold-accent);
    }
}

.sparkle-star {
    position: absolute;
    pointer-events: none;
    animation: sparkle-animation 1.5s ease-in-out;
    opacity: 0.7;
    background: radial-gradient(circle, var(--gold-accent) 0%, var(--gold-primary) 50%, transparent 80%);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--gold-accent), 0 0 16px var(--gold-primary);
}

.sparkle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, #FFD700 0%, transparent 50%);
    animation: sparkle-rotation 1s linear;
}

@keyframes sparkle-animation {
    0% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.5) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: scale(0) rotate(360deg);
    }
}

@keyframes sparkle-rotation {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Social Media Icons in Navigation */
.social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.social-icon.instagram:hover {
    background: var(--gold-gradient);
    color: white;
}

.social-icon.youtube:hover {
    background: var(--gold-gradient);
    color: white;
}

.social-icon.whatsapp:hover {
    background: var(--gold-gradient);
    color: white;
}

.social-icon.email:hover {
    background: var(--gold-gradient);
    color: white;
}

/* Floating Social Media Buttons */
.floating-social {
    position: fixed;
    right: 20px;
    top: 80px;
    display: flex;
    flex-direction: row;
    gap: 15px;
    z-index: 999;
}

.floating-social-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: var(--shadow-dark);
    transition: all 0.3s ease;
    overflow: hidden;
}

.floating-social-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.floating-social-btn:hover {
    transform: translateX(-5px) scale(1.05);
}

.instagram-float {
    background: linear-gradient(135deg, #d4af37, #ffd700);
}

.youtube-float {
    background: linear-gradient(135deg, #b8860b, #daa520);
}

.whatsapp-float {
    background: linear-gradient(135deg, #cd853f, #f0e68c);
}

.email-float {
    background: linear-gradient(135deg, #daa520, #ffdf00);
}

.floating-social-btn:hover a {
    transform: scale(1.1);
}

/* Responsive adjustments for social icons */
@media (max-width: 768px) {
    .social-icons {
        display: none;
    }

    .floating-social {
        right: 10px;
        top: 70px;
        gap: 8px;
        flex-wrap: wrap;
        max-width: calc(100vw - 20px);
    }

    .floating-social-btn {
        width: 50px;
        height: 50px;
    }

    .hero {
        flex-direction: column !important;
    }

    .hero-content, .quiz-white-box {
        width: 100%;
        background: white !important;
    }
}

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

html {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

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

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

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    cursor: pointer;
}

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

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

.nav-menu a:hover {
    color: var(--gold-primary);
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gold-primary);
    margin: 3px 0;
    transition: 0.3s;
}


@keyframes golden-pulse {
    0%, 100% { filter: brightness(1) saturate(1); }
    50% { filter: brightness(1.05) saturate(1.1); }
}

.hero-decoration {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #FFD700 0%, #FFA500 30%, transparent 70%);
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
    filter: blur(40px);
}

.gold-burst {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, rgba(244, 228, 193, 0.2) 40%, transparent 70%);
    filter: blur(50px);
    animation: burst-pulse 5s ease-in-out infinite;
}

.gold-burst-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.gold-burst-2 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    right: -200px;
    animation-delay: 1s;
}

.gold-burst-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: -125px;
    animation-delay: 2s;
}

@keyframes burst-pulse {
    0%, 100% { 
        opacity: 0.2;
        transform: scale(1);
    }
    50% { 
        opacity: 0.4;
        transform: scale(1.2);
    }
}

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


.hero {
    margin-top: 70px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(244, 228, 193, 0.3) 100%),
                url('titelbild.png') center/cover no-repeat fixed;
    position: relative;
    overflow: hidden;
    animation: golden-pulse 6s ease-in-out infinite;
    padding: 2rem;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 25px;
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15),
                0 0 60px rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    animation: content-glow 4s ease-in-out infinite;
    width: 100%;
}

@keyframes content-glow {
    0%, 100% { box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15), 0 0 60px rgba(212, 175, 55, 0.1); }
    50% { box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2), 0 0 80px rgba(212, 175, 55, 0.15); }
}

.quiz-white-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
    background: white;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    border: 2px solid rgba(212, 175, 55, 0.4);
}

.hero-headline {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
    color: black;
}

.golden-accent {
    color: var(--gold-primary);
    text-shadow: 2px 2px 8px rgba(212, 175, 55, 0.3);
    display: inline-block;
    animation: shimmer 3s ease-in-out infinite;
    font-weight: 700;
}

@keyframes shimmer {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-subheadline {
    font-size: 1.2rem;
    color: black;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-aha {
    font-size: 1.2rem;
    color: black;
    margin-bottom: 2rem;
    line-height: 1.8;
}


.cta-button {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
    position: relative;
    overflow: hidden;
    animation: button-pulse 4s infinite;
}

@keyframes button-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25); }
    50% { transform: scale(1.02); box-shadow: 0 10px 30px rgba(212, 175, 55, 0.35); }
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-dark);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button-secondary {
    background: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background: var(--gold-primary);
    color: var(--white);
    transform: translateY(-2px);
}

.pain-points {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.95);
}

.pain-points h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.pain-item {
    background: var(--bg-cream);
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.pain-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--gold-light);
}

.pain-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pain-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.good-news {
    background: linear-gradient(135deg, var(--gold-light), var(--bg-cream));
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border-left: 4px solid var(--gold-primary);
}

.highlight {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.insight {
    font-size: 1.1rem;
    color: var(--gold-dark);
    font-weight: 500;
}

.about-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(244, 228, 193, 0.4) 100%),
                url('titelbild.png') center/cover no-repeat fixed;
}

.about-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.about-image-container {
    padding-top: 20px;
    position: relative;
}

.about-image {
    width: 100%;
    max-width: 350px;
    height: 450px;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    position: relative;
    z-index: 2;
    object-fit: cover;
    object-position: center top;
    background: white;
    overflow: hidden;
}

.image-decoration {
    position: absolute;
    top: 0;
    left: 20px;
    width: 100%;
    height: 100%;
    max-width: 350px;
    border: 3px solid var(--gold-primary);
    border-radius: 15px;
    z-index: -1;
    transform: translate(-15px, -15px);
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    padding: 0.5rem;
    border-radius: 5px;
}

.about-highlights {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 249, 240, 0.9);
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.highlight-item {
    text-align: center;
    flex: 1;
}

.highlight-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}

.highlight-text {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
}

.about-credentials {
    background: var(--gold-light);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.about-credentials h4 {
    color: var(--gold-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.about-credentials ul {
    list-style: none;
    padding: 0;
}

.about-credentials li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.about-credentials li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: bold;
}

.about-mission {
    font-size: 1.2rem;
    color: var(--gold-dark);
    padding: 1.5rem;
    background: linear-gradient(135deg, transparent, var(--gold-light));
    border-left: 4px solid var(--gold-primary);
    border-radius: 5px;
    margin-top: 2rem;
}

.story-section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.story-section::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('img/deinwegbreit.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -5;
    transform: translateZ(0);
    will-change: transform;
}

.story-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 249, 240, 0.85) 0%, rgba(244, 228, 193, 0.5) 100%);
    z-index: -1;
}

.story-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.story-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.story-intro em {
    color: var(--gold-primary);
    font-style: normal;
    font-weight: 600;
}

.journey-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
    z-index: 2;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gold-primary);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 20px;
    background: var(--gold-primary);
    border: 4px solid var(--white);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 1;
    box-shadow: var(--shadow-light);
}

.timeline-content {
    width: 45%;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 3;
    position: relative;
}

.timeline-content:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-medium);
}

.timeline-content h3 {
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.timeline-content p {
    color: var(--text-dark);
    line-height: 1.6;
    font-weight: 1000;
}

.insight-text {
    color: var(--text-dark) !important;
}

.story-conclusion {
    max-width: 700px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    border: 2px solid var(--gold-light);
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 2;
}

.conclusion-text {
    font-size: 1.2rem;
    color: var(--gold-dark);
    font-weight: 500;
    line-height: 1.8;
}

/* Modal Styles */
.modal {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 228, 193, 0.95) 100%);
    padding: 3rem;
    border-radius: 25px;
    max-width: 800px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 80px rgba(212, 175, 55, 0.3);
    border: 2px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(20px);
    animation: slideUp 0.3s ease;
    margin: auto;
}

.modal-content h2 {
    color: var(--gold-primary);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 8px rgba(212, 175, 55, 0.2);
}

.modal-content h3 {
    color: var(--gold-dark);
    font-size: 1.4rem;
    margin: 2rem 0 1rem 0;
    border-bottom: 2px solid var(--gold-light);
    padding-bottom: 0.5rem;
}

.modal-content h4 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem 0;
}

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

.modal-content a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.modal-content a:hover {
    color: var(--gold-dark);
    text-decoration: underline;
}

.modal-close {
    position: absolute;
    right: 25px;
    top: 25px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: var(--gold-primary);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--gold-light);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.modal-close:hover {
    color: white;
    background: var(--gold-primary);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Custom Scrollbar for Modal */
.modal-content::-webkit-scrollbar {
    width: 12px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(244, 228, 193, 0.3);
    border-radius: 10px;
    margin: 10px 0;
}

.modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.5);
}

.modal-content::-webkit-scrollbar-corner {
    background: transparent;
}

/* Firefox Scrollbar */
.modal-content {
    scrollbar-width: thin;
    scrollbar-color: var(--gold-primary) rgba(244, 228, 193, 0.3);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.quiz-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.95);
}

.quiz-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.quiz-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.quiz-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-cream);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    min-height: 400px;
}

.quiz-start {
    text-align: center;
    padding: 3rem;
}

.quiz-progress {
    margin-bottom: 2rem;
}

.progress-bar {
    height: 8px;
    background: var(--gold-light);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-dark));
    transition: width 0.3s ease;
    border-radius: 10px;
}

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

.question-container {
    min-height: 200px;
    margin-bottom: 2rem;
}

.question {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.answer-option {
    background: var(--white);
    padding: 1rem;
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.answer-option:hover {
    border-color: var(--gold-primary);
    transform: translateX(5px);
}

.answer-option.selected {
    background: var(--gold-light);
    border-color: var(--gold-primary);
}

.quiz-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.quiz-nav-btn {
    padding: 0.8rem 1.5rem;
    background: var(--gold-primary);
    color: var(--white);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quiz-nav-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

.quiz-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.quiz-result {
    text-align: center;
    padding: 2rem;
}

.quiz-result h3 {
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}

.result-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

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

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

.result-subtitle {
    font-size: 1.2rem;
    color: var(--gold-primary);
    font-style: italic;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    padding: 1rem;
    background: rgba(244, 228, 193, 0.3);
    border-radius: 10px;
    border-left: 4px solid var(--gold-primary);
}

.result-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border-left: 4px solid var(--gold-primary);
}

.result-section h4 {
    color: var(--gold-dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.result-section p {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1rem;
}

.contact-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 249, 240, 0.9) 0%, rgba(255, 255, 255, 0.85) 100%),
                url('titelbild.png') center/cover no-repeat fixed;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Premium Contact Intro Styling */
.premium-intro {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(244, 228, 193, 0.9) 100%);
    border-radius: 25px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
    border: 2px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(15px);
}

.intro-hero {
    text-align: center;
    margin-bottom: 2.5rem;
}

.intro-headline {
    font-size: 2.2rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(212, 175, 55, 0.3);
    font-weight: 700;
}

.hero-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.value-proposition {
    text-align: left;
}

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

.hero-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    object-fit: cover;
}

.main-value {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 500;
}

.highlight-box {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 20px;
    padding: 1.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    position: relative;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.highlight-box:hover {
    transform: scale(1.02);
}

.highlight-text {
    font-size: 1.4rem;
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
}

.price-cta-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.price-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 0.5rem 1rem;
    backdrop-filter: blur(10px);
}

.price {
    font-size: 1.8rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.analysis-button {
    background: rgba(255, 255, 255, 0.95) !important;
    color: var(--gold-dark) !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.analysis-button:hover {
    background: white !important;
    color: var(--gold-primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.benefits-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.25);
}

.benefit-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

.process-section {
    text-align: center;
    margin-bottom: 2.5rem;
}

.process-title {
    font-size: 1.6rem;
    color: var(--gold-dark);
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.process-step {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.process-step:hover {
    transform: translateY(-3px);
    border-color: var(--gold-light);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.step-number {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.process-step h5 {
    color: var(--gold-dark);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.contact-intro {
    text-align: left;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .premium-intro {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .intro-headline {
        font-size: 1.8rem;
    }
    
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-proposition {
        text-align: center;
    }
    
    .hero-image {
        max-width: 250px;
    }
    
    .main-value {
        font-size: 1.1rem;
    }
    
    .highlight-text {
        font-size: 1.2rem;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    .price-cta-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .analysis-button {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
    
    .benefits-section {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .process-step {
        padding: 1rem;
    }
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid var(--gold-light);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-dark);
    border-color: var(--gold-primary);
}

.contact-card h3 {
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
}

.contact-card p {
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-card .cta-button {
    font-size: 1.3rem;
    padding: 1.2rem 2.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-dark);
    transform: scale(1);
    transition: all 0.3s ease;
}

.contact-card .cta-button:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.4);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    padding: 0.8rem;
    border: 1px solid var(--gold-light);
    border-radius: 25px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold-primary);
}

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

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(255, 249, 240, 0.9) 0%, rgba(244, 228, 193, 0.7) 100%),
                url('titelbild.png') center/cover no-repeat fixed;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

/* Testimonials Slider */
.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto 3rem;
    overflow: hidden;
}

.testimonials-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: none;
}

.testimonial-slide.active {
    opacity: 1;
    display: block;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    border: 2px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
    max-width: 100%;
}

.testimonial-card.featured {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 228, 193, 0.95) 100%);
    border: 2px solid var(--gold-primary);
    transform: scale(1.02);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.25);
}

.testimonial-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

/* Slider Navigation */
.slider-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.slider-prev, .slider-next {
    background: var(--gold-primary);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.slider-prev:hover, .slider-next:hover {
    background: var(--gold-dark);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.slider-dots {
    display: flex;
    gap: 0.8rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--gold-primary);
    transform: scale(1.3);
}

.dot:hover {
    background: var(--gold-dark);
    transform: scale(1.2);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.testimonial-author h4 {
    color: var(--gold-primary);
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.testimonial-role {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

.testimonial-rating {
    font-size: 1.1rem;
    color: var(--gold-accent);
}

.testimonial-question {
    color: var(--gold-dark);
    font-size: 1rem;
    margin: 1.5rem 0 0.8rem 0;
    padding: 0.8rem;
    background: rgba(244, 228, 193, 0.3);
    border-radius: 10px;
    border-left: 4px solid var(--gold-primary);
}

.testimonial-text {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.testimonial-result {
    background: linear-gradient(135deg, var(--gold-light), rgba(244, 228, 193, 0.8));
    padding: 1.2rem;
    border-radius: 12px;
    color: var(--gold-dark);
    font-weight: 500;
    margin-top: 1.5rem;
    border: 1px solid var(--gold-primary);
}

.testimonial-insight {
    background: rgba(255, 255, 255, 0.7);
    padding: 1rem;
    border-radius: 10px;
    color: var(--text-dark);
    font-style: italic;
    margin-top: 1rem;
    border-left: 3px solid var(--gold-accent);
}

.testimonials-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    margin-top: 2rem;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.cta-text {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 600;
}

.testimonial-button {
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .testimonials-slider {
        max-width: 100%;
    }
    
    .testimonial-card.featured {
        transform: none;
    }
    
    .testimonial-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .slider-navigation {
        gap: 1rem;
    }
    
    .slider-prev, .slider-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .testimonials-cta {
        padding: 2rem 1.5rem;
    }
    
    .cta-text {
        font-size: 1.2rem;
    }
    
    .testimonial-button {
        font-size: 1rem;
        padding: 1rem 1.5rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.95);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--white);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--gold-primary);
    font-weight: bold;
    transition: transform 0.3s ease;
}

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

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

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

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

@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem 1rem;
    }

    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        transition: right 0.3s ease;
        box-shadow: var(--shadow-dark);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .journey-timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        margin-left: 40px;
    }
    
    .journey-timeline .timeline-marker {
        left: -30px !important;
        transform: none !important;
        background: var(--gold-primary) !important;
        width: 20px !important;
        height: 20px !important;
        margin-left: 0 !important;
        position: absolute !important;
    }
    
    .timeline-content {
        width: 100%;
        margin-top: 1rem;
    }
}

/* CTA Container */
.cta-container {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem 0;
}

.cta-container .cta-button {
    box-shadow: var(--shadow-dark);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.cta-container .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
}

/* Contact Content */
.contact-content {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.contact-image-container {
    max-width: 400px;
    margin: 0 auto;
}

.contact-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    object-fit: cover;
}

@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-image-container {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-image {
        max-width: 280px;
        height: 350px;
        margin: 0 auto;
    }
    
    .image-decoration {
        max-width: 280px;
        transform: translate(-10px, -10px);
    }
    
    .about-highlights {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .about-text {
        width: 100%;
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    
    .about-text p {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* Story Section with Background Image */

/* Mobile Story Image */
.mobile-story-image {
    display: none;
    margin-top: 2rem;
    text-align: center;
}

.mobile-conclusion-image {
    max-width: 280px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    object-fit: cover;
}

/* Mobile Modal Styles */
@media (max-width: 768px) {
    .modal {
        padding: 10px;
        align-items: flex-start;
        padding-top: 5vh;
    }
    
    .modal-content {
        padding: 2rem 1.5rem;
        max-height: 90vh;
        font-size: 0.9rem;
    }
    
    .modal-content h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .modal-content h3 {
        font-size: 1.2rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    
    .modal-content h4 {
        font-size: 1.1rem;
        margin: 1rem 0 0.5rem 0;
    }
    
    .modal-close {
        right: 15px;
        top: 15px;
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
}

@media (max-width: 1024px) {
    .story-floating-image {
        display: none;
    }
    
    .mobile-story-image {
        display: block;
    }
}
