        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body,
html {
    margin: 0;
    padding: 0;
    
}

        .inspirational-journey-container {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
            padding: 2rem 1rem;
        }

        .journey-highlights-section {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .section-header-title {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-align: center;
            padding: 3rem 2rem;
        }

        .main-heading-text {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .subtitle-tagline {
            font-size: 1.5rem;
            opacity: 0.9;
            font-weight: 300;
        }

        .content-wrapper-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            min-height: 500px;
        }

        .image-showcase-container {
            position: relative;
            background: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border: 2px solid white;
            border-radius: 8px;
        }

        .hero-image-display {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .hero-image-display:hover {
            transform: scale(1.05);
        }

        .image-overlay-gradient {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(102,126,234,0.2) 0%, rgba(118,75,162,0.2) 100%);
        }

        .text-content-section {
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        }

        .content-paragraph-block {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #333;
            margin-bottom: 1.5rem;
            text-align: justify;
        }

        .highlight-text-emphasis {
            font-style: italic;
            font-weight: 600;
            color: #667eea;
        }

        .navigation-dots-container {
            display: flex;
            justify-content: center;
            padding: 2rem;
            gap: 1rem;
            background: white;
        }

        .dot-indicator-element {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot-indicator-element:hover,
        .dot-indicator-element.active-dot-state {
            background: #667eea;
            transform: scale(1.2);
        }

        .floating-accent-element {
            position: absolute;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(102,126,234,0.1) 0%, rgba(118,75,162,0.1) 100%);
            top: 20%;
            right: 10%;
            animation: floatAnimation 6s ease-in-out infinite;
        }

        @keyframes floatAnimation {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .main-heading-text {
                font-size: 2.5rem;
            }
            
            .subtitle-tagline {
                font-size: 1.3rem;
            }
            
            .content-wrapper-grid {
                grid-template-columns: 1fr;
            }
            
            .text-content-section {
                padding: 2rem;
            }
        }

        @media (max-width: 768px) {
            .inspirational-journey-container {
                padding: 1rem 0.5rem;
            }
            
            .main-heading-text {
                font-size: 2rem;
            }
            
            .subtitle-tagline {
                font-size: 1.1rem;
            }
            
            .section-header-title {
                padding: 2rem 1rem;
            }
            
            .text-content-section {
                padding: 1.5rem;
            }
            
            .content-paragraph-block {
                font-size: 1rem;
                line-height: 1.6;
            }
        }

        @media (max-width: 480px) {
            .main-heading-text {
                font-size: 1.8rem;
            }
            
            .subtitle-tagline {
                font-size: 1rem;
            }
            
            .text-content-section {
                padding: 1rem;
            }
            
            .content-paragraph-block {
                font-size: 0.95rem;
                text-align: left;
            }
            
            .floating-accent-element {
                display: none;
            }
        }

        @media (min-width: 1400px) {
            .journey-highlights-section {
                max-width: 1400px;
            }
            
            .main-heading-text {
                font-size: 3.5rem;
            }
            
            .text-content-section {
                padding: 4rem;
            }
        }