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

/* Premium Payment Loading Overlay */
.cosmic-payment-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 0, 20, 0.98);
    backdrop-filter: blur(20px);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cosmic-payment-loading.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

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

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

/* Gradient background */
.loading-gradient-bg {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle at center, 
        rgba(155, 89, 182, 0.15) 0%,
        rgba(218, 165, 32, 0.1) 25%,
        transparent 50%);
    animation: rotateGradient 20s linear infinite;
}

@keyframes rotateGradient {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Central content */
.loading-center {
    position: relative;
    text-align: center;
    z-index: 10;
    max-width: 400px;
    padding: 2rem;
}

/* Premium heart animation */
.premium-heart-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
}

.heart-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    animation: heartBeat 1.5s ease-in-out infinite;
    z-index: 2;
}

@keyframes heartBeat {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    25% { transform: translate(-50%, -50%) scale(1.1); }
    50% { transform: translate(-50%, -50%) scale(0.95); }
    75% { transform: translate(-50%, -50%) scale(1.05); }
}

.heart-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, 
        rgba(155, 89, 182, 0.4) 0%,
        transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.8; }
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(155, 89, 182, 0.3);
    border-radius: 50%;
    animation: rotateRing 3s linear infinite;
}

.orbit-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #DAA520;
    border-radius: 50%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px #DAA520;
    animation: orbitDot 3s linear infinite;
}

@keyframes rotateRing {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes orbitDot {
    from { transform: translateX(-50%) rotate(0deg) translateY(-50px); }
    to { transform: translateX(-50%) rotate(360deg) translateY(-50px); }
}

/* Text styling */
.loading-main-text {
    color: #FFFFFF;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    animation: fadeInUp 0.6s ease;
}

.loading-sub-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease;
}

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

/* Elegant progress bar */
.elegant-progress {
    margin: 2rem 0;
}

.progress-track {
    position: relative;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #9B59B6, #DAA520);
    border-radius: 2px;
    animation: fillProgress 2.5s ease-out forwards;
}

.progress-glow {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 50px;
    background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.8));
    animation: moveGlow 2.5s ease-out forwards;
}

@keyframes fillProgress {
    to { width: 100%; }
}

@keyframes moveGlow {
    from { transform: translateX(-200px); }
    to { transform: translateX(0); }
}

/* Loading message */
.loading-message {
    margin-top: 1.5rem;
}

.loading-message p {
    color: rgba(218, 165, 32, 0.9);
    font-size: 0.95rem;
    font-style: italic;
    animation: fadeInOut 3s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* Floating sparkles */
.floating-sparkles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    animation: floatSparkle 6s infinite;
}

.sparkle:nth-child(1) { left: 10%; animation-delay: 0s; }
.sparkle:nth-child(2) { left: 30%; animation-delay: 1s; }
.sparkle:nth-child(3) { left: 50%; animation-delay: 2s; }
.sparkle:nth-child(4) { left: 70%; animation-delay: 3s; }
.sparkle:nth-child(5) { left: 90%; animation-delay: 4s; }
.sparkle:nth-child(6) { left: 20%; animation-delay: 5s; }

@keyframes floatSparkle {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .loading-main-text {
        font-size: 1.5rem;
    }
    
    .loading-sub-text {
        font-size: 0.9rem;
    }
    
    .premium-heart-container {
        width: 100px;
        height: 100px;
    }
    
    .heart-pulse {
        font-size: 2.5rem;
    }
}

.container {
    position: relative;
    width: 100%;
    min-height: 1300vh; /* Increased for better program section spacing */
    overflow: visible;
}

/* Base background with deep blue space gradient */
body {
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
    background: radial-gradient(circle at 20% 20%, #9B59B6 0%, transparent 40%),
                radial-gradient(circle at 70% 60%, #E74C3C 0%, transparent 50%),
                radial-gradient(circle at 50% 100%, rgba(218,165,32,0.3) 0%, transparent 60%),
                #1A0E2E !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    color: white !important;
    position: relative;
}

/* Loading indicator */
.loading-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 14, 46, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
    opacity: 0 !important; /* Force hide immediately */
    pointer-events: none !important;
    visibility: hidden !important;
}

.loading-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(155, 89, 182, 0.3);
    border-top: 3px solid #9B59B6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hide loading when images are loaded */
body.images-loaded .loading-indicator,
.loading-indicator.hidden {
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
}

/* Show background images immediately */
.background-image {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

#bg-image-a {
    opacity: 1 !important; /* Show first image immediately */
}

/* Ensure background is visible even if loading indicator is stuck */
/* Background is now handled in the main body rule above */

/* Background container for smooth transitions */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    mix-blend-mode: normal;
    will-change: opacity;
    object-fit: cover;
    z-index: 0;
    visibility: visible;
    filter: brightness(0.4) contrast(1.2) saturate(1.1);
}

#bg-image-a {
    background-image: url('/singles-static/assets/Soul Union assets/Playfair Display (1200 x 1200 px)/1.png');
    opacity: 1;
    animation: float 6s ease-in-out infinite;
}

#bg-image-b {
    background-image: url('/singles-static/assets/Soul Union assets/Playfair Display (1200 x 1200 px)/2.png');
    opacity: 0;
    animation: float 6s ease-in-out infinite 2s;
}

#bg-image-c {
    background-image: url('/singles-static/assets/Soul Union assets/Playfair Display (1200 x 1200 px)/3.png');
    opacity: 0;
    animation: float 6s ease-in-out infinite 4s;
}

#bg-image-d {
    background-image: url('/singles-static/assets/Soul Union assets/Playfair Display (1200 x 1200 px)/4.png');
    opacity: 0;
    animation: float 6s ease-in-out infinite 6s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.02); }
}

/* Removed twinkle animation - using clean deep blue space background */

@keyframes cosmic-glow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(155, 89, 182, 0.3),
                    0 0 40px rgba(231, 76, 60, 0.2),
                    0 0 60px rgba(218, 165, 32, 0.1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(155, 89, 182, 0.5),
                    0 0 60px rgba(231, 76, 60, 0.3),
                    0 0 90px rgba(218, 165, 32, 0.2);
    }
}

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

@keyframes progress-glow {
    0%, 100% { box-shadow: 0 0 10px rgba(155, 89, 182, 0.5); }
    50% { box-shadow: 0 0 20px rgba(155, 89, 182, 0.8); }
}

/* Sections */
.section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    padding: 2rem 1rem;
    box-sizing: border-box;
}

/* Journey Sections */
.journey-section {
    position: relative;
    overflow: hidden;
}

.journey-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: -1;
    filter: blur(2px);
}

.journey-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(26, 14, 46, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    border: 1px solid rgba(155, 89, 182, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
}

.journey-content:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(155, 89, 182, 0.4);
    border-color: rgba(155, 89, 182, 0.6);
}

.journey-content:active {
    transform: scale(0.98);
}

/* Add a subtle indicator that it's clickable */
.journey-content::after {
    content: "Click to continue →";
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(155, 89, 182, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.journey-content:hover::after {
    opacity: 1;
}

.journey-image {
    margin-bottom: 2rem;
    animation: float 4s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.journey-step-img {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(155, 89, 182, 0.5);
    transition: all 0.4s ease;
    filter: brightness(0.9) contrast(1.1);
    object-fit: cover;
}

.journey-step-img:hover {
    transform: scale(1.08);
    filter: brightness(1) contrast(1.2);
    box-shadow: 0 20px 50px rgba(155, 89, 182, 0.6);
}

.journey-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(155, 89, 182, 0.5);
    background: linear-gradient(135deg, #fff, #9b59b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    width: 100%;
    line-height: 1.2;
}

.journey-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 0;
    font-style: italic;
    text-align: center;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive design for journey sections */
@media (max-width: 768px) {
    .journey-content {
        max-width: 95%;
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .journey-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .journey-description {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .journey-step-img {
        max-width: 100%;
    }
    
    .section {
        padding: 1rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .journey-content {
        max-width: 98%;
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    .journey-title {
        font-size: 1.8rem;
    }
    
    .journey-description {
        font-size: 1rem;
    }
}

/* Journey step indicators */
.journey-progress {
    position: fixed;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.journey-step-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(155, 89, 182, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.journey-step-indicator.active {
    background: #9b59b6;
    box-shadow: 0 0 15px rgba(155, 89, 182, 0.7);
}

.journey-step-indicator:hover {
    background: rgba(155, 89, 182, 0.7);
    transform: scale(1.2);
}



/* Specific styling for programs section */
#programs-section {
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 4rem 0 !important;
}

.content {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    transition: transform 0.3s ease;
    width: 100%;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}







/* CTA Card */
.cta-card {
    position: relative;
    background: rgba(26, 14, 46, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(155, 89, 182, 0.4);
    border-radius: 25px;
    padding: 2.5rem;
    margin-top: 2rem;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease-in-out;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    animation: cosmic-glow 3s ease-in-out infinite;
    z-index: 10;
}

.cta-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Cosmic background elements */
.cosmic-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Removed floating stars for cleaner look */

.cosmic-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(155, 89, 182, 0.2) 0%, transparent 70%);
    animation: cosmic-glow 4s ease-in-out infinite;
}

.cosmic-icon-large {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
}

.cta-content {
    position: relative;
    z-index: 2;
    background: rgba(26, 14, 46, 0.8);
    padding: 1rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.cta-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 255, 255, 0.3);
}

.cta-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 1);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.cta-button {
    background: linear-gradient(45deg, #9B59B6, #E74C3C);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(155, 89, 182, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(155, 89, 182, 0.6);
    background: linear-gradient(45deg, #E74C3C, #9B59B6);
}

/* Responsive design */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .content {
        max-width: 90%;
        padding: 1.5rem;
    }
    
    .background-image {
        background-size: cover;
        background-position: center;
    }
    
    .loading-text {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    /* Mobile-specific reviews carousel */
    .reviews-scroll-container {
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding: 1rem 0;
    }
    
    .reviews-grid {
        scroll-snap-align: start;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .review-card {
        min-width: 280px;
        max-width: 320px;
        width: 300px;
        scroll-snap-align: center;
    }
    
    /* Mobile logo centering */
    .main-logo-container {
        left: 0;
        transform: none;
        text-align: center;
        width: 100%;
        padding: 0 1rem;
    }
    
    .main-logo {
        margin: 0 auto;
        padding: 0.8rem 1.5rem;
    }
    
    .main-logo-text {
        font-size: 1.5rem;
    }
    
    .main-logo-img {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .content {
        max-width: 98%;
        padding: 0.8rem;
    }
    
    .background-image {
        background-size: cover;
        background-position: center;
    }
    
    .loading-text {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
    
    /* Enhanced program descriptions for narrow screens */
    .program-descriptions {
        gap: 0.8rem;
        margin: 1rem 0;
    }
    
    .program-description-card {
        padding: 0.8rem;
        margin: 0 0.5rem;
    }
    
    .program-desc-header {
        gap: 0.3rem;
    }
    
    .program-desc-title h3 {
        font-size: 1rem !important;
        line-height: 1.2;
    }
    
    .program-desc-price {
        font-size: 0.9rem !important;
    }
    
    .desc-feature {
        font-size: 0.85rem;
        gap: 0.4rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-icon {
        font-size: 1rem;
        flex-shrink: 0;
    }
    
    .program-desc-ideal {
        padding: 0.5rem;
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    /* Reviews section improvements */
    .reviews-section {
        padding: 1rem;
        margin: 1rem 0.5rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem !important;
        line-height: 1.2;
    }
    
    .section-header p {
        font-size: 0.9rem !important;
        line-height: 1.4;
    }
    
    .review-card {
        min-width: 250px;
        max-width: 280px;
        width: 270px;
        padding: 1rem;
    }
    
    .review-text {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* Founder section improvements */
    .founder-section {
        padding: 1rem;
        margin: 1rem 0.5rem;
    }
    
    .founder-description {
        font-size: 0.9rem !important;
        line-height: 1.4;
    }
    
    .credential {
        gap: 0.5rem;
        font-size: 0.85rem;
        min-height: 28px;
        flex-wrap: wrap;
        justify-content: flex-start;
        text-align: left;
    }
    
    .credential-icon {
        width: 20px;
        height: 20px;
    }
    
    .credential-icon .svg-icon-small {
        width: 16px !important;
        height: 16px !important;
    }
    
    /* CTA and button improvements */
    .programs-selection-note {
        margin: 1rem 0.5rem;
        padding: 0.8rem;
    }
    
    .programs-selection-note p {
        font-size: 0.9rem !important;
        line-height: 1.3;
    }
    
    /* Stats improvements */
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

/* Extra narrow screens (under 360px) */
@media (max-width: 360px) {
    .content {
        max-width: 99%;
        padding: 0.5rem;
    }
    
    .programs-container {
        max-width: 99% !important;
        padding: 1rem !important;
        margin: 0.5rem auto !important;
    }
    
    .program-description-card {
        padding: 0.6rem;
        margin: 0 0.2rem;
    }
    
    .program-desc-title h3 {
        font-size: 0.95rem !important;
    }
    
    .desc-feature {
        font-size: 0.8rem;
    }
    
    .reviews-section, .founder-section {
        margin: 0.5rem 0.2rem;
        padding: 0.8rem;
    }
    
    .credential {
        font-size: 0.8rem;
        gap: 0.4rem;
    }
    
    .credential-icon .svg-icon-small {
        width: 14px !important;
        height: 14px !important;
    }
    
    .section-header h2 {
        font-size: 1.3rem !important;
    }
    
    .review-card {
        min-width: 230px;
        max-width: 260px;
        width: 250px;
    }
}

/* CTA Options */
.cta-options {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.cta-option {
    position: relative;
    background: linear-gradient(45deg, rgba(155, 89, 182, 0.8), rgba(231, 76, 60, 0.8));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(155, 89, 182, 0.3);
    min-height: 60px;
}

.cosmic-btn {
    animation: btn-pulse 2s ease-in-out infinite;
}

.cosmic-btn:hover {
    background: linear-gradient(45deg, rgba(231, 76, 60, 0.9), rgba(155, 89, 182, 0.9));
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(155, 89, 182, 0.5);
}

.btn-cosmic-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.cosmic-btn:hover .btn-cosmic-bg {
    transform: translateX(100%);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cosmic-btn:hover .btn-glow {
    opacity: 1;
}

.option-icon {
    font-size: 1.8rem;
    min-width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.option-text {
    flex: 1;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
}

/* Quiz Container */
.quiz-container {
    background: rgba(26, 14, 46, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(155, 89, 182, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.quiz-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.cosmic-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
}

.cosmic-icon .svg-icon {
    filter: drop-shadow(0 0 15px rgba(155, 89, 182, 0.6)) brightness(0) invert(1);
    display: block;
    margin: 0 auto;
    width: 48px;
    height: 48px;
}

.quiz-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 0 0 20px rgba(155, 89, 182, 0.5);
}

.quiz-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Removed cosmic particles for cleaner look */

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

.progress-container {
    position: relative;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 1px solid rgba(155, 89, 182, 0.3);
    animation: progress-glow 2s ease-in-out infinite;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #9B59B6, #E74C3C, #DAA520);
    border-radius: 8px;
    transition: width 0.5s ease;
    width: 0%;
    box-shadow: 0 0 10px rgba(155, 89, 182, 0.5);
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 0 10px;
}

.step-indicator {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(155, 89, 182, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.step-indicator.active {
    background: linear-gradient(45deg, #9B59B6, #E74C3C);
    border-color: #fff;
    color: white;
    box-shadow: 0 0 15px rgba(155, 89, 182, 0.6);
    transform: scale(1.1);
}

.step-indicator.completed {
    background: linear-gradient(45deg, #27AE60, #2ECC71);
    border-color: #fff;
    color: white;
    box-shadow: 0 0 10px rgba(39, 174, 96, 0.5);
}

.progress-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    text-align: center;
    font-weight: 500;
}

.quiz-content {
    min-height: 200px;
    display: block;
    visibility: visible;
    opacity: 1;
}

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

.quiz-question h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #fff;
    line-height: 1.4;
}

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

.quiz-option {
    position: relative;
    background: linear-gradient(45deg, rgba(155, 89, 182, 0.8), rgba(231, 76, 60, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.2rem;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.4s ease;
    color: white;
    text-align: left;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(155, 89, 182, 0.3);
    backdrop-filter: blur(10px);
}

.quiz-option:hover {
    background: linear-gradient(45deg, rgba(231, 76, 60, 0.9), rgba(155, 89, 182, 0.9));
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(155, 89, 182, 0.5);
}

.quiz-option.selected {
    background: linear-gradient(45deg, #9B59B6, #E74C3C);
    border-color: #fff;
    box-shadow: 0 0 25px rgba(155, 89, 182, 0.7);
    transform: scale(1.05);
}

.quiz-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.quiz-nav-btn {
    background: linear-gradient(45deg, rgba(155, 89, 182, 0.8), rgba(231, 76, 60, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 24px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(155, 89, 182, 0.3);
    backdrop-filter: blur(10px);
}

.quiz-nav-btn:hover:not(:disabled) {
    background: linear-gradient(45deg, rgba(231, 76, 60, 0.9), rgba(155, 89, 182, 0.9));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(155, 89, 182, 0.5);
}

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

/* Programs Container */
.programs-container {
    background: rgba(26, 14, 46, 0.95) !important;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(155, 89, 182, 0.5) !important;
    border-radius: 20px;
    padding: 3rem 2rem !important;
    margin: 3rem auto !important;
    max-width: 700px !important;
    width: 100% !important;
    min-height: auto !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 100 !important;
    position: relative !important;
    overflow: visible !important;
    display: block !important;
    box-shadow: 0 10px 30px rgba(155, 89, 182, 0.3) !important;
}

.programs-header {
    text-align: center;
    margin-bottom: 2rem;
}

.programs-header h2 {
    font-size: 2.2rem !important;
    margin-bottom: 1rem !important;
    color: #fff !important;
    text-shadow: 0 0 20px rgba(155, 89, 182, 0.8) !important;
    font-weight: bold !important;
}

.programs-header p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.1rem !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3) !important;
}

/* Program Descriptions */
.program-descriptions {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.program-description-card {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(155, 89, 182, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.program-description-card:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(155, 89, 182, 0.5);
    box-shadow: 0 8px 25px rgba(155, 89, 182, 0.2);
}

.program-desc-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.program-desc-icon {
    flex-shrink: 0;
}

.program-desc-image {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: rgba(155, 89, 182, 0.2);
    padding: 5px;
}

.program-desc-title h3 {
    color: #fff !important;
    font-size: 1.3rem !important;
    margin-bottom: 0.3rem;
    text-shadow: 0 0 10px rgba(155, 89, 182, 0.6);
}

.program-desc-price {
    color: #DAA520 !important;
    font-size: 1.1rem !important;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(218, 165, 32, 0.6);
}

.program-desc-summary {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1rem !important;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.program-desc-features {
    margin: 1rem 0;
}

.desc-feature {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.7rem;
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.95rem;
}

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

.program-desc-ideal {
    background: rgba(155, 89, 182, 0.15);
    border: 1px solid rgba(155, 89, 182, 0.3);
    border-radius: 8px;
    padding: 0.8rem;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.9rem;
}

.program-desc-ideal strong {
    color: #DAA520 !important;
}

.programs-selection-note {
    text-align: center;
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(218, 165, 32, 0.1);
    border: 1px solid rgba(218, 165, 32, 0.3);
    border-radius: 10px;
}

.programs-selection-note p {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 1rem !important;
    text-shadow: 0 0 10px rgba(218, 165, 32, 0.4);
}

.programs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.program-card {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem !important;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    gap: 1.5rem;
    min-height: 120px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: visible !important;
    flex-direction: row !important;
}

.program-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.program-icon {
    flex-shrink: 0;
}

.program-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.program-details {
    flex: 1;
}

.program-details h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.program-details p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.program-details p strong {
    color: #DAA520;
    font-weight: 600;
}

.program-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #9B59B6;
    text-shadow: 0 0 10px rgba(155, 89, 182, 0.5);
}

/* Reading Container */
.reading-container {
    background: rgba(26, 14, 46, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(155, 89, 182, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.reading-header {
    text-align: center;
    margin-bottom: 2rem;
}

.reading-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.reading-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.reading-content {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.reading-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
}

.reading-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.reading-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.reading-cta {
    background: linear-gradient(135deg, #9B59B6, #E74C3C);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reading-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(155, 89, 182, 0.6);
}

/* Results Container */
.results-container {
    background: rgba(26, 14, 46, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(155, 89, 182, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.results-header {
    text-align: center;
    margin-bottom: 2rem;
}

.results-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.results-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.results-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.results-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
}

.results-programs h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #fff;
    text-align: center;
}

.recommended-programs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

/* Back Button */
.back-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.2);
} 

/* Program Details Section */
.program-details-section {
    background: rgba(26, 14, 46, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(155, 89, 182, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-icon {
    margin-bottom: 1rem;
}

.section-header-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
    max-width: 100%;
    height: auto;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 0 0 20px rgba(155, 89, 182, 0.5);
}

.section-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}



.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Reviews Section - COMPLETE REWRITE */
.reviews-section {
    background: rgba(26, 14, 46, 0.9) !important;
    backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(155, 89, 182, 0.3) !important;
    border-radius: 20px !important;
    padding: 2rem !important;
    margin: 2rem auto !important;
    max-width: 1200px !important;
    width: 100% !important;
    overflow: visible !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

/* Reviews Scroll Container - FORCED HORIZONTAL */
.reviews-scroll-container {
    overflow-x: scroll !important;
    overflow-y: hidden !important;
    padding: 2rem 0 !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: thin !important;
    scrollbar-color: rgba(155, 89, 182, 0.5) transparent !important;
    width: 100% !important;
    max-width: 100% !important;
    scroll-behavior: smooth !important;
    white-space: nowrap !important;
    position: relative !important;
    margin: 0 auto !important;
    text-align: center !important;
    scroll-snap-type: x mandatory !important;
    cursor: grab !important;
    background: linear-gradient(90deg, 
        rgba(155, 89, 182, 0.1) 0%, 
        transparent 10%, 
        transparent 90%, 
        rgba(155, 89, 182, 0.1) 100%) !important;
    border-radius: 10px !important;
    box-shadow: inset 0 0 20px rgba(155, 89, 182, 0.1) !important;
    display: block !important;
    min-height: 400px !important;
}

.reviews-scroll-container:active {
    cursor: grabbing !important;
}

.reviews-scroll-container::-webkit-scrollbar {
    height: 8px !important;
}

.reviews-scroll-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 4px !important;
}

.reviews-scroll-container::-webkit-scrollbar-thumb {
    background: rgba(155, 89, 182, 0.5) !important;
    border-radius: 4px !important;
}

.reviews-scroll-container::-webkit-scrollbar-thumb:hover {
    background: rgba(155, 89, 182, 0.7) !important;
}

/* Scroll indicator */
.reviews-scroll-container::before {
    content: "← Swipe to see more reviews →" !important;
    position: absolute !important;
    top: -30px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    color: rgba(155, 89, 182, 0.8) !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    z-index: 10 !important;
    animation: pulse 2s ease-in-out infinite !important;
}

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

/* Reviews Grid - FORCED HORIZONTAL LAYOUT */
.reviews-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 2rem !important;
    padding: 0 2rem !important;
    min-width: max-content !important;
    width: max-content !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    white-space: nowrap !important;
}

/* Review Cards - FORCED HORIZONTAL */
.review-card {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 15px !important;
    padding: 1.5rem !important;
    min-width: 320px !important;
    max-width: 380px !important;
    width: 350px !important;
    flex-shrink: 0 !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    word-wrap: break-word !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    white-space: normal !important;
    scroll-snap-align: center !important;
    height: auto !important;
    min-height: 250px !important;
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

.review-stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.review-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
    font-size: 0.95rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    flex: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-author {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.review-author strong {
    color: #fff;
}

/* Quiz Styles */
.quiz-question {
    text-align: center;
    margin: 2rem 0;
}

.quiz-question h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #fff;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.quiz-option {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.quiz-option:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.quiz-results {
    text-align: center;
    margin: 2rem 0;
}

.quiz-results h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.quiz-results p {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.quiz-cta {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    border: none;
    border-radius: 25px;
    padding: 1rem 2rem;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(155, 89, 182, 0.3);
}

.quiz-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(155, 89, 182, 0.4);
}

.review-author span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.reviews-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #DAA520;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Founder Section */
.founder-section {
    background: rgba(26, 14, 46, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(155, 89, 182, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 800px;
    text-align: center;
}

.founder-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    text-align: center;
}

.founder-image {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(155, 89, 182, 0.5);
    box-shadow: 0 0 30px rgba(155, 89, 182, 0.3);
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-content {
    flex: 1;
    min-width: 300px;
    text-align: center;
    max-width: 500px;
}

.founder-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #fff;
    text-align: center;
}

.founder-title {
    font-size: 1.3rem;
    color: #DAA520;
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 0 10px rgba(218, 165, 32, 0.5);
}

.founder-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.founder-credentials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
    text-align: center;
    justify-items: center;
    align-items: center;
}

.credential {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    text-align: center;
    font-weight: 500;
    min-height: 30px;
}

.credential-icon {
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.credential-icon .svg-icon-small {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
    object-fit: contain;
}

.credential:hover .credential-icon .svg-icon-small {
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(155, 89, 182, 0.8));
    transform: scale(1.1);
}

/* Ensure all credential icons are consistently sized and aligned */
.credential-icon img {
    width: 20px !important;
    height: 20px !important;
    object-fit: contain !important;
    display: block !important;
}

/* Special styling for Love Stories Transformed credential - bigger icon and closer spacing */
.love-stories-credential .credential-icon img {
    width: 32px !important;
    height: 32px !important;
}

.love-stories-credential {
    gap: 0.4rem !important;
}

.founder-cta {
    text-align: center;
}

.founder-btn {
    background: linear-gradient(45deg, #9B59B6, #E74C3C);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(155, 89, 182, 0.4);
}

.founder-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(155, 89, 182, 0.6);
    background: linear-gradient(45deg, #E74C3C, #9B59B6);
}

/* Responsive design for new sections */
@media (max-width: 768px) {
    .section {
        min-height: auto;
        padding: 1rem 0 3rem 0;
    }
    
    .program-features {
        grid-template-columns: 1fr;
    }
    
    .programs-container {
        max-width: 95% !important;
        padding: 1.5rem !important;
        margin: 1rem auto !important;
    }
    
    /* Program Description Mobile Styles */
    .program-descriptions {
        gap: 1rem;
    }
    
    .program-description-card {
        padding: 1rem;
    }
    
    .program-desc-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .program-desc-image {
        width: 40px;
        height: 40px;
    }
    
    .program-desc-title h3 {
        font-size: 1.1rem !important;
    }
    
    .program-desc-price {
        font-size: 1rem !important;
    }
    
    .desc-feature {
        font-size: 0.9rem;
        gap: 0.5rem;
    }
    
    .program-desc-ideal {
        padding: 0.6rem;
        font-size: 0.85rem;
    }
    
    .program-card {
        flex-direction: column !important;
        text-align: center;
        padding: 1.5rem !important;
        min-height: auto !important;
    }
    
    .program-icon img {
        width: 60px;
        height: 60px;
    }
    
    .reviews-section {
        max-width: 95%;
        padding: 1.5rem;
        margin: 1rem auto;
    }
    
    .reviews-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .review-card {
        min-width: 280px;
        max-width: 320px;
        width: 300px;
        margin: 0 auto;
    }
    
    .founder-profile {
        flex-direction: column;
        text-align: center;
    }
    
    .founder-image {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }
    
    .reviews-stats {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        text-align: center;
    }
    
    .founder-credentials {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
        gap: 0.8rem;
    }
    
    .credential {
        justify-content: center;
        width: 100%;
        max-width: 250px;
        gap: 0.6rem;
        font-size: 0.9rem;
        line-height: 1.3;
        text-align: center;
    }
}

/* Footer Section */
.footer-section {
    background: linear-gradient(135deg, rgba(26, 14, 46, 0.95), rgba(13, 7, 23, 0.98));
    border-top: 2px solid rgba(155, 89, 182, 0.3);
    padding: 4rem 0 2rem 0;
    margin-top: 4rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.footer-column h4 {
    color: #DAA520;
    font-size: 1.3rem;
    margin-bottom: 1.8rem;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(218, 165, 32, 0.6);
    text-align: center;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #DAA520, transparent);
    border-radius: 1px;
}

.footer-logo h3 {
    color: #9B59B6;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(155, 89, 182, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-tagline {
    color: #DAA520;
    font-style: italic;
    margin-bottom: 1rem;
    font-weight: 500;
}

.footer-description {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    font-size: 1.5rem;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(155, 89, 182, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(155, 89, 182, 0.4);
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a,
.footer-links li {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.footer-links a:hover {
    color: #9B59B6;
    text-shadow: 0 0 10px rgba(155, 89, 182, 0.5);
}



.contact-icon {
    width: 24px;
    text-align: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    background: rgba(155, 89, 182, 0.2);
    border-radius: 50%;
    padding: 0.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
}

.contact-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.contact-link:hover {
    color: #9B59B6;
    text-shadow: 0 0 10px rgba(155, 89, 182, 0.5);
    transform: translateX(2px);
}

.contact-link::after {
    content: '↗';
    margin-left: 0.3rem;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-link:hover::after {
    opacity: 1;
}

/* SVG Icon Styles */
.svg-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.svg-icon-small {
    width: 20px;
    height: 24px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.svg-icon-large {
    width: 48px;
    height: 48px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.svg-icon-inline {
    width: 20px;
    height: 24px;
    filter: brightness(0) invert(1);
    vertical-align: middle;
    margin-right: 0.5rem;
}

.footer-logo-img {
    width: 32px;
    height: 32px;
    vertical-align: middle;
    margin-right: 0.5rem;
    border-radius: 4px;
}

/* Main Logo Styles */
.main-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.main-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(155, 89, 182, 0.1);
    padding: 1rem 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(155, 89, 182, 0.3);
}

.main-logo-img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
}

.main-logo-text {
    color: #9B59B6;
    font-size: 2rem;
    font-weight: 600;
    text-shadow: 0 0 15px rgba(155, 89, 182, 0.6);
}

.feature-icon .svg-icon {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(155, 89, 182, 0.5));
}

.cosmic-icon .svg-icon {
    filter: drop-shadow(0 0 15px rgba(155, 89, 182, 0.6)) brightness(0) invert(1);
    display: block;
    margin: 0 auto;
    width: 48px;
    height: 48px;
}

.cosmic-icon-large .svg-icon-large {
    filter: drop-shadow(0 0 20px rgba(155, 89, 182, 0.8)) brightness(0) invert(1);
    display: block;
    margin: 0 auto;
}

.social-icon .svg-icon {
    width: 20px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.social-icon:hover .svg-icon {
    filter: drop-shadow(0 0 10px rgba(155, 89, 182, 0.8)) brightness(0) invert(1);
}

.reading-icon .svg-icon {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 0 15px rgba(155, 89, 182, 0.6)) brightness(0) invert(1);
}

.svg-icon-program {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 0 15px rgba(155, 89, 182, 0.5)) brightness(0) invert(1);
}

.footer-bottom {
    border-top: 1px solid rgba(155, 89, 182, 0.3);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-legal p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-brand {
    color: #DAA520 !important;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(218, 165, 32, 0.3);
}

.footer-links-bottom {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #9B59B6;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.5);
}

.footer-disclaimer {
    background: rgba(155, 89, 182, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(155, 89, 182, 0.2);
}

.disclaimer-text {
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin: 0;
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links-bottom {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

.section-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Gold Star Icons */
.gold-star {
    width: 20px;
    height: 24px;
    margin: 0 2px;
    
    transition: all 0.3s ease;
}

.suj-stars-5 {
    width: 96px;
    height: 24px;
    
    transition: all 0.3s ease;
}

.review-stars .gold-star:hover,
.review-stars .suj-stars-5:hover {
    transform: scale(1.1);
    filter: brightness(0) invert(1) sepia(1) saturate(1000%) hue-rotate(25deg) drop-shadow(0 0 8px rgba(218, 165, 32, 0.8));
}

/* Mobile-specific reviews improvements */
@media (max-width: 768px) {
    .reviews-scroll-container {
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 1rem 0;
    }
    
    .reviews-grid {
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .review-card {
        min-width: 280px;
        max-width: 320px;
        width: 300px;
        scroll-snap-align: center;
    }
}

/* Force horizontal carousel - OVERRIDE ALL OTHER STYLES */
.reviews-section * {
    box-sizing: border-box !important;
}

.reviews-scroll-container,
.reviews-scroll-container * {
    box-sizing: border-box !important;
}

.reviews-grid,
.reviews-grid * {
    box-sizing: border-box !important;
}

/* Ensure reviews are always horizontally scrollable */
.reviews-scroll-container {
    overflow-x: scroll !important;
    overflow-y: hidden !important;
    white-space: nowrap !important;
}

.reviews-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    width: max-content !important;
    min-width: max-content !important;
}

.review-card {
    flex-shrink: 0 !important;
    white-space: normal !important;
}

/* Mobile-specific reviews improvements */
@media (max-width: 768px) {
    .reviews-scroll-container {
        overflow-x: scroll !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        padding: 1rem 0 !important;
    }
    
    .reviews-grid {
        gap: 1rem !important;
        padding: 0 1rem !important;
    }
    
    .review-card {
        min-width: 280px !important;
        max-width: 320px !important;
        width: 300px !important;
        scroll-snap-align: center !important;
    }
}

/* Enhanced Quiz Results Styles */
.summary-card {
    background: rgba(26, 14, 46, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    border: 2px solid rgba(155, 89, 182, 0.4) !important;
    border-radius: 25px !important;
    padding: 3rem !important;
    margin: 2rem auto !important;
    max-width: 1000px !important;
    width: 100% !important;
    box-shadow: 0 20px 60px rgba(155, 89, 182, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
}

.summary-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(135deg, 
        rgba(155, 89, 182, 0.1) 0%, 
        rgba(26, 14, 46, 0.9) 50%, 
        rgba(155, 89, 182, 0.1) 100%) !important;
    z-index: -1 !important;
}

.summary-icon {
    font-size: 3rem !important;
    text-align: center !important;
    margin-bottom: 1.5rem !important;
    animation: float 3s ease-in-out infinite !important;
}

.summary-card h3 {
    color: #fff !important;
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    text-align: center !important;
    margin-bottom: 2rem !important;
    background: linear-gradient(135deg, #9B59B6, #E91E63) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.summary-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 2.5rem !important;
}

.summary-text {
    color: #fff !important;
    font-size: 1.1rem !important;
    line-height: 1.8 !important;
    text-align: center !important;
    margin: 0 !important;
    padding: 1.5rem !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 15px !important;
    border-left: 4px solid #9B59B6 !important;
}

.personalized-insights {
    background: rgba(255, 255, 255, 0.08) !important;
    border-radius: 20px !important;
    padding: 2rem !important;
    border: 1px solid rgba(155, 89, 182, 0.3) !important;
}

.personalized-insights h4 {
    color: #9B59B6 !important;
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    text-align: center !important;
    margin-bottom: 1.5rem !important;
}

.insights-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 1.5rem !important;
}

.insight-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 1rem !important;
    padding: 1.2rem !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 12px !important;
    border: 1px solid rgba(155, 89, 182, 0.2) !important;
    transition: all 0.3s ease !important;
}

.insight-item:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(155, 89, 182, 0.2) !important;
}

.insight-icon {
    font-size: 1.5rem !important;
    flex-shrink: 0 !important;
    margin-top: 0.2rem !important;
}

.insight-text {
    color: #fff !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
}

.insight-text strong {
    color: #9B59B6 !important;
    font-weight: 600 !important;
}

.validation-message {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.15), rgba(233, 30, 99, 0.15)) !important;
    border-radius: 20px !important;
    padding: 2rem !important;
    text-align: center !important;
    border: 2px solid rgba(155, 89, 182, 0.3) !important;
}

.validation-message h4 {
    color: #E91E63 !important;
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
}

.validation-message p {
    color: #fff !important;
    font-size: 1.05rem !important;
    line-height: 1.7 !important;
    margin: 0 !important;
}

.direct-action {
    background: rgba(26, 14, 46, 0.8) !important;
    border-radius: 20px !important;
    padding: 2.5rem !important;
    text-align: center !important;
    border: 2px solid rgba(155, 89, 182, 0.4) !important;
    position: relative !important;
    overflow: hidden !important;
}

.direct-action::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(45deg, 
        rgba(155, 89, 182, 0.1) 0%, 
        transparent 50%, 
        rgba(233, 30, 99, 0.1) 100%) !important;
    z-index: -1 !important;
}

.direct-action h4 {
    color: #9B59B6 !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
}

.direct-action p {
    color: #fff !important;
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 2rem !important;
}

.action-buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
    align-items: center !important;
}

.start-program-btn {
    position: relative !important;
    background: linear-gradient(135deg, #9B59B6, #E91E63) !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 1.2rem 3rem !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    color: #fff !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 10px 30px rgba(155, 89, 182, 0.4) !important;
    min-width: 280px !important;
    overflow: hidden !important;
}

.start-program-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 40px rgba(155, 89, 182, 0.6) !important;
    background: linear-gradient(135deg, #E91E63, #9B59B6) !important;
}

.start-program-btn:active {
    transform: translateY(-1px) !important;
}

.explore-programs-btn {
    background: transparent !important;
    border: 2px solid rgba(155, 89, 182, 0.6) !important;
    border-radius: 50px !important;
    padding: 1rem 2.5rem !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    color: #9B59B6 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-block !important;
    min-width: 200px !important;
}

.explore-programs-btn:hover {
    background: rgba(155, 89, 182, 0.1) !important;
    border-color: #9B59B6 !important;
    color: #fff !important;
    transform: translateY(-2px) !important;
}

/* Mobile Responsiveness for Quiz Results */
@media (max-width: 768px) {
    .summary-card {
        padding: 2rem 1.5rem !important;
        margin: 1rem !important;
    }
    
    .summary-card h3 {
        font-size: 1.8rem !important;
    }
    
    .summary-text {
        font-size: 1rem !important;
        padding: 1rem !important;
    }
    
    .insights-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .insight-item {
        padding: 1rem !important;
    }
    
    .direct-action {
        padding: 2rem 1.5rem !important;
    }
    
    .start-program-btn {
        padding: 1rem 2rem !important;
        font-size: 1.1rem !important;
        min-width: 250px !important;
    }
    
    .explore-programs-btn {
        padding: 0.8rem 2rem !important;
        min-width: 180px !important;
    }
}

/* Personalized Program Section */
.personalized-program-section {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.15), rgba(233, 30, 99, 0.15)) !important;
    border-radius: 20px !important;
    padding: 2rem !important;
    border: 2px solid rgba(155, 89, 182, 0.4) !important;
    position: relative !important;
    overflow: hidden !important;
}

.personalized-program-section::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(45deg, 
        rgba(155, 89, 182, 0.1) 0%, 
        transparent 50%, 
        rgba(233, 30, 99, 0.1) 100%) !important;
    z-index: -1 !important;
}

.personalized-program-section h4 {
    color: #9B59B6 !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    text-align: center !important;
    margin-bottom: 1.5rem !important;
}

.personalized-program-card {
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 15px !important;
    padding: 2rem !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px) !important;
}

.program-header {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    margin-bottom: 1.5rem !important;
}

.program-icon {
    font-size: 2rem !important;
    flex-shrink: 0 !important;
}

.program-info h3 {
    color: #fff !important;
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    margin: 0 0 0.5rem 0 !important;
}

.program-description {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

.program-specs {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)) !important;
    gap: 1rem !important;
    margin-bottom: 1.5rem !important;
    padding: 1rem !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 10px !important;
}

.spec-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
}

.spec-label {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.9rem !important;
    margin-bottom: 0.3rem !important;
}

.spec-value {
    color: #9B59B6 !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
}

.program-features {
    margin-bottom: 1.5rem !important;
}

.program-features h5 {
    color: #9B59B6 !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.8rem !important;
}

.features-list {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
}

.expected-outcome {
    margin-bottom: 1.5rem !important;
    padding: 1rem !important;
    background: rgba(155, 89, 182, 0.1) !important;
    border-radius: 10px !important;
    border-left: 4px solid #9B59B6 !important;
}

.expected-outcome h5 {
    color: #9B59B6 !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.5rem !important;
}

.expected-outcome p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

.personalization-note {
    text-align: center !important;
    padding: 1rem !important;
    background: rgba(233, 30, 99, 0.1) !important;
    border-radius: 10px !important;
    border: 1px solid rgba(233, 30, 99, 0.3) !important;
}

.personalization-note p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.9rem !important;
    margin: 0 !important;
}

.personalization-note strong {
    color: #E91E63 !important;
}

/* Mobile Responsiveness for Personalized Program */
@media (max-width: 768px) {
    .personalized-program-section {
        padding: 1.5rem !important;
    }
    
    .personalized-program-card {
        padding: 1.5rem !important;
    }
    
    .program-header {
        flex-direction: column !important;
        text-align: center !important;
        gap: 0.5rem !important;
    }
    
    .program-specs {
        grid-template-columns: 1fr !important;
        gap: 0.8rem !important;
    }
    
    .spec-item {
        flex-direction: row !important;
        justify-content: space-between !important;
        text-align: left !important;
    }
}

/* Mobile Responsiveness for CTA Button */
@media (max-width: 768px) {
    .cta-option {
        padding: 1.2rem 1.5rem;
        font-size: 1.1rem;
        min-height: 55px;
    }
    
    .option-icon {
        font-size: 1.5rem;
        min-width: 30px;
    }
    
    .option-text {
        font-size: 1.2rem;
        letter-spacing: 0.3px;
    }
}

@media (max-width: 480px) {
    .cta-option {
        padding: 1rem 1.2rem;
        font-size: 1rem;
        min-height: 50px;
    }
    
    .option-icon {
        font-size: 1.3rem;
        min-width: 25px;
    }
    
    .option-text {
        font-size: 1.1rem;
        letter-spacing: 0.2px;
    }
}

/* Detailed Program Container Styles */
.detailed-program-container {
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 20px !important;
    padding: 2rem !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(15px) !important;
    margin: 2rem 0 !important;
}

.detailed-program-header {
    text-align: center !important;
    margin-bottom: 2rem !important;
}

.detailed-program-header h3 {
    color: #fff !important;
    font-size: 1.8rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.5rem !important;
}

.detailed-program-header p {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1rem !important;
}

.detailed-program-content {
    margin-bottom: 2rem !important;
}

.detailed-program-info > div {
    margin-bottom: 2rem !important;
    padding: 1.5rem !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 15px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.detailed-program-info h4 {
    color: #9B59B6 !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
}

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

.overview-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 1rem !important;
    background: rgba(155, 89, 182, 0.1) !important;
    border-radius: 10px !important;
}

.overview-label {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.9rem !important;
    margin-bottom: 0.5rem !important;
}

.overview-value {
    color: #9B59B6 !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
}

.situation-analysis p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
}

.personalized-features-list {
    list-style: none !important;
    padding: 0 !important;
}

.personalized-features-list li {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 0.8rem !important;
    padding-left: 0 !important;
}

.daily-practices p,
.expected-timeline p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
}

.detailed-program-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
    align-items: center !important;
    margin-top: 2rem !important;
}

.begin-program-btn {
    min-width: 250px !important;
}

.back-to-summary-btn {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 0.8rem 1.5rem !important;
    border-radius: 10px !important;
    font-size: 1rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.back-to-summary-btn:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
    transform: translateY(-2px) !important;
}

.program-action-buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
    align-items: center !important;
    margin-top: 1.5rem !important;
}

.view-details-btn {
    background: rgba(155, 89, 182, 0.2) !important;
    border: 1px solid rgba(155, 89, 182, 0.3) !important;
    color: #9B59B6 !important;
    padding: 0.8rem 1.5rem !important;
    border-radius: 10px !important;
    font-size: 1rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.view-details-btn:hover {
    background: rgba(155, 89, 182, 0.3) !important;
    color: #fff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(155, 89, 182, 0.3) !important;
}