        /* Preloader Styles */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .preloader.fade-out {
            opacity: 0;
            visibility: hidden;
        }

        .loader {
            position: relative;
            width: 100px;
            height: 100px;
        }

        .loader-circle {
            position: absolute;
            width: 100%;
            height: 100%;
            border: 3px solid transparent;
            border-top: 3px solid #4ecdc4;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        .loader-circle:nth-child(2) {
            width: 80%;
            height: 80%;
            top: 10%;
            left: 10%;
            border-top: 3px solid #ff6b6b;
            animation-duration: 1.5s;
            animation-direction: reverse;
        }

        .loader-circle:nth-child(3) {
            width: 60%;
            height: 60%;
            top: 20%;
            left: 20%;
            border-top: 3px solid #f9ca24;
            animation-duration: 2s;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .loader-text {
            position: absolute;
            top: 120px;
            left: 50%;
            transform: translateX(-50%);
            color: #4ecdc4;
            font-family: 'Orbitron', monospace;
            font-weight: 700;
            font-size: 1.2rem;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.6; }
            50% { opacity: 1; }
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Noto Sans JP', sans-serif;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
            color: #ffffff;
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Enhanced navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 1rem 2rem;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .navbar.scrolled {
            background: rgba(0, 0, 0, 0.98);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .nav-logo {
            font-family: 'Orbitron', monospace;
            font-weight: 900;
            font-size: 1.5rem;
            color: #4ecdc4;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
            padding: 0.5rem 1rem;
        }

        .nav-links a:hover {
            color: #4ecdc4;
        }

        .hero-section {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 30%, #16213e 60%, #0e1628 100%);
            padding-top: 80px;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            animation: gridMove 20s linear infinite;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(10px, 10px); }
        }

        .animated-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
                        radial-gradient(circle at 40% 80%, rgba(120, 219, 255, 0.3) 0%, transparent 50%);
            animation: float 8s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(1deg); }
        }

        .particles {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: floatUp 6s infinite ease-in-out;
        }

        @keyframes floatUp {
            0% {
                opacity: 0;
                transform: translateY(100vh) scale(0);
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                opacity: 0;
                transform: translateY(-100vh) scale(1);
            }
        }

        .hero-content {
            text-align: center;
            max-width: 1200px;
            padding: 2rem;
            position: relative;
            z-index: 10;
        }

        .hero-title {
            font-family: 'Orbitron', monospace;
            font-size: clamp(3rem, 6vw, 4.5rem);
            font-weight: 900;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #f9ca24);
            background-size: 400% 400%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 4s ease-in-out infinite;
            text-shadow: 0 0 50px rgba(255, 107, 107, 0.5);
            letter-spacing: 2px;
            position: relative;
        }

        .hero-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
            border-radius: 2px;
            animation: expandLine 2s ease-in-out infinite alternate;
        }

        @keyframes expandLine {
            0% { width: 80px; }
            100% { width: 120px; }
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .hero-subtitle {
            font-size: clamp(1.2rem, 2.5vw, 1.8rem);
            margin-bottom: 2rem;
            opacity: 0;
            animation: slideInUp 1s ease-out 0.5s forwards;
            color: #e0e0e0;
            font-weight: 300;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .profile-section {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 3rem;
            align-items: center;
            margin: 3rem 0;
            opacity: 0;
            animation: fadeInScale 1s ease-out 1s forwards;
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .profile-image {
            width: 250px;
            height: 250px;
            border-radius: 50%;
            background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: white;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            box-shadow: 0 0 50px rgba(102, 126, 234, 0.4);
            animation: pulse 3s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { box-shadow: 0 0 50px rgba(102, 126, 234, 0.4); }
            50% { box-shadow: 0 0 80px rgba(102, 126, 234, 0.8); }
        }

        .profile-info {
            text-align: left;
        }

        .profile-name {
            font-family: 'Orbitron', monospace;
            font-size: 2.8rem;
            font-weight: 900;
            margin-bottom: 0.8rem;
            color: #4ecdc4;
            text-shadow: 0 0 20px rgba(78, 205, 196, 0.5);
        }

        .profile-title {
            font-size: 1.4rem;
            color: #ff6b6b;
            margin-bottom: 1.5rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .profile-detail {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #d0d0d0;
            margin-bottom: 1rem;
            font-weight: 400;
        }

        .highlight {
            color: #f9ca24;
            font-weight: 700;
            text-shadow: 0 0 10px rgba(249, 202, 36, 0.3);
        }

        .cta-section {
            background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(78, 205, 196, 0.2));
            padding: 3rem 2rem;
            border-radius: 20px;
            margin: 3rem 0;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            animation: slideInUp 1s ease-out 1.5s both;
        }

        .cta-title {
            font-family: 'Orbitron', monospace;
            font-size: 2.2rem;
            font-weight: 900;
            margin-bottom: 1rem;
            color: #4ecdc4;
            text-align: center;
            text-shadow: 0 0 20px rgba(78, 205, 196, 0.3);
        }

        .cta-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .benefit-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .benefit-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .benefit-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #f9ca24;
            text-shadow: 0 0 10px rgba(249, 202, 36, 0.3);
        }

        .benefit-desc {
            color: #b0b0b0;
            line-height: 1.6;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
            color: white;
            padding: 1.5rem 3rem;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.3rem;
            font-weight: 600;
            margin: 2rem auto;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 107, 107, 0.5);
        }

        .urgency-banner {
            background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
            padding: 1rem;
            border-radius: 10px;
            margin: 2rem 0;
            text-align: center;
            animation: shake 2s ease-in-out infinite;
        }

        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-2px); }
            75% { transform: translateX(2px); }
        }

        .urgency-text {
            font-size: 1.3rem;
            font-weight: 900;
            color: white;
            text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
            letter-spacing: 1px;
        }

        .footer {
            text-align: center;
            padding: 2rem;
            color: #888;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero-section {
                padding-top: 60px;
            }

            .profile-section {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }
            
            .profile-info {
                text-align: center;
            }

            .profile-name {
                font-size: 2.2rem;
            }

            .section-title {
                font-size: 2.2rem;
            }
            
            .cta-benefits {
                grid-template-columns: 1fr;
            }

            .philosophy-grid {
                grid-template-columns: 1fr;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .success-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .testimonials {
                grid-template-columns: 1fr;
            }

            .container {
                padding: 0 1rem;
            }
        }

        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-10px); }
            60% { transform: translateX(-50%) translateY(-5px); }
        }

        /* New Sections Styles */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-title {
            font-family: 'Orbitron', monospace;
            font-size: 3rem;
            font-weight: 900;
            text-align: center;
            margin-bottom: 3rem;
            background: linear-gradient(45deg, #4ecdc4, #45b7d1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Philosophy Section */
        .philosophy-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
        }

        .philosophy-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .philosophy-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 3rem 2rem;
            border-radius: 20px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .philosophy-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(78, 205, 196, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .philosophy-card:hover::before {
            opacity: 1;
        }

        .philosophy-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
        }

        .philosophy-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
        }

        .philosophy-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #4ecdc4;
            margin-bottom: 1rem;
        }

        .philosophy-desc {
            color: #d0d0d0;
            line-height: 1.6;
            font-size: 1.1rem;
        }

        /* Services Section */
        .services-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(22, 33, 62, 0.9));
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 2.5rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            transition: all 0.3s ease;
        }

        .service-card.premium {
            border: 2px solid #f9ca24;
            background: linear-gradient(135deg, rgba(249, 202, 36, 0.1), rgba(255, 107, 107, 0.1));
        }

        .service-badge {
            position: absolute;
            top: -10px;
            right: 20px;
            background: linear-gradient(45deg, #f9ca24, #ff6b6b);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
        }

        .service-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #4ecdc4;
            margin-bottom: 1rem;
        }

        .service-price {
            margin-bottom: 2rem;
        }

        .price-value {
            font-size: 2.5rem;
            font-weight: 900;
            color: #f9ca24;
        }

        .price-note {
            color: #888;
            font-size: 1rem;
            margin-left: 0.5rem;
        }

        .service-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .service-features li {
            padding: 0.5rem 0;
            color: #d0d0d0;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .service-features i {
            color: #4ecdc4;
        }

        .service-button {
            display: block;
            width: 100%;
            padding: 1rem;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
            color: white;
            text-decoration: none;
            border-radius: 10px;
            text-align: center;
            font-weight: 700;
            transition: all 0.3s ease;
        }

        .service-button.secondary {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .service-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
        }

        /* Success Section */
        .success-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
        }

        .success-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .success-stat {
            text-align: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            color: #4ecdc4;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: #d0d0d0;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .testimonials {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 15px;
            border-left: 4px solid #4ecdc4;
        }

        .testimonial-content {
            margin-bottom: 1.5rem;
        }

        .testimonial-content p {
            font-style: italic;
            color: #d0d0d0;
            line-height: 1.6;
        }

        .testimonial-author {
            color: #4ecdc4;
            font-weight: 700;
        }
                /* Banner Section */
                .banner-section {
                    position: relative;
                    margin: 2rem 0;
                }
        
                .banner-container {
                    position: relative;
                    width: 100%;
                    height: 300px;
                    overflow: hidden;
                    border-radius: 15px;
                    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
                }
        
                .banner-image {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    object-position: center center;
                    transition: transform 0.3s ease;
                }
        
                /* Ensure banner displays well on all devices */
                @media (max-width: 1024px) {
                    .banner-image {
                        object-fit: cover;
                        object-position: center top;
                    }
                }
        
                .banner-container:hover .banner-image {
                    transform: scale(1.05);
                }
        
                .banner-overlay {
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(78, 205, 196, 0.2));
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }
        
                .banner-text {
                    font-family: 'Orbitron', monospace;
                    font-size: 2.5rem;
                    font-weight: 900;
                    color: white;
                    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
                    text-align: center;
                    background: linear-gradient(45deg, #ffffff, #4ecdc4);
                    -webkit-background-clip: text;
                    -webkit-text-fill-color: transparent;
                    background-clip: text;
                }
        
                /* Comments Section */
                .comments-section {
                    padding: 5rem 0;
                    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(26, 26, 46, 0.9));
                }
        
                .comment-form-container {
                    background: rgba(255, 255, 255, 0.05);
                    padding: 3rem;
                    border-radius: 20px;
                    margin-bottom: 4rem;
                    border: 1px solid rgba(255, 255, 255, 0.1);
                }
        
                .form-title {
                    font-size: 1.8rem;
                    font-weight: 700;
                    color: #4ecdc4;
                    margin-bottom: 2rem;
                    text-align: center;
                }
        
                .comment-form {
                    max-width: 800px;
                    margin: 0 auto;
                }
        
                .form-row {
                    display: grid;
                    grid-template-columns: 1fr 1fr;
                    gap: 2rem;
                    margin-bottom: 1.5rem;
                }
        
                .form-group {
                    margin-bottom: 1.5rem;
                }
        
                .form-group label {
                    display: block;
                    color: #d0d0d0;
                    font-weight: 600;
                    margin-bottom: 0.5rem;
                }
        
                .form-group input,
                .form-group select,
                .form-group textarea {
                    width: 100%;
                    padding: 1rem;
                    background: rgba(255, 255, 255, 0.1);
                    border: 1px solid rgba(255, 255, 255, 0.2);
                    border-radius: 10px;
                    color: white;
                    font-size: 1rem;
                    transition: all 0.3s ease;
                }
        
                .form-group input:focus,
                .form-group select:focus,
                .form-group textarea:focus {
                    outline: none;
                    border-color: #4ecdc4;
                    box-shadow: 0 0 10px rgba(78, 205, 196, 0.3);
                }
        
                .form-group textarea {
                    height: 120px;
                    resize: vertical;
                }
        
                .form-group input::placeholder,
                .form-group textarea::placeholder {
                    color: rgba(255, 255, 255, 0.5);
                }
        
                .form-group select option {
                    background: #1a1a2e;
                    color: white;
                }
        
                .submit-btn {
                    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
                    color: white;
                    border: none;
                    padding: 1rem 2rem;
                    border-radius: 50px;
                    font-size: 1.1rem;
                    font-weight: 700;
                    cursor: pointer;
                    transition: all 0.3s ease;
                    display: flex;
                    align-items: center;
                    gap: 0.5rem;
                    margin: 0 auto;
                    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.3);
                }
        
                .submit-btn:hover {
                    transform: translateY(-2px);
                    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5);
                }
        
                .comments-display {
                    max-width: 900px;
                    margin: 0 auto;
                }
        
                .comments-title {
                    font-size: 1.8rem;
                    font-weight: 700;
                    color: #4ecdc4;
                    margin-bottom: 2rem;
                    text-align: center;
                }
        
                .comment-item {
                    background: rgba(255, 255, 255, 0.05);
                    padding: 2rem;
                    border-radius: 15px;
                    margin-bottom: 1.5rem;
                    border: 1px solid rgba(255, 255, 255, 0.1);
                    transition: all 0.3s ease;
                }
        
                .comment-item:hover {
                    transform: translateY(-2px);
                    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
                }
        
                .comment-header {
                    display: flex;
                    align-items: center;
                    margin-bottom: 1rem;
                }
        
                .comment-avatar {
                    width: 50px;
                    height: 50px;
                    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    margin-right: 1rem;
                    color: white;
                    font-size: 1.2rem;
                }
        
                .comment-info {
                    display: flex;
                    flex-direction: column;
                    gap: 0.2rem;
                }
        
                .comment-name {
                    font-weight: 700;
                    color: #4ecdc4;
                    font-size: 1.1rem;
                }
        
                .comment-experience {
                    font-size: 0.9rem;
                    color: #f9ca24;
                    background: rgba(249, 202, 36, 0.2);
                    padding: 0.2rem 0.5rem;
                    border-radius: 12px;
                    width: fit-content;
                }
        
                .comment-date {
                    font-size: 0.8rem;
                    color: #888;
                }
        
                .comment-content {
                    color: #d0d0d0;
                    line-height: 1.6;
                    margin-bottom: 1rem;
                    font-size: 1rem;
                }
        
                .comment-actions {
                    display: flex;
                    gap: 1rem;
                }
        
                .like-btn,
                .reply-btn {
                    background: rgba(255, 255, 255, 0.1);
                    border: 1px solid rgba(255, 255, 255, 0.2);
                    color: #d0d0d0;
                    padding: 0.5rem 1rem;
                    border-radius: 20px;
                    cursor: pointer;
                    font-size: 0.9rem;
                    transition: all 0.3s ease;
                    display: flex;
                    align-items: center;
                    gap: 0.3rem;
                }
        
                .like-btn:hover {
                    background: rgba(78, 205, 196, 0.2);
                    border-color: #4ecdc4;
                    color: #4ecdc4;
                }
        
                .reply-btn:hover {
                    background: rgba(255, 107, 107, 0.2);
                    border-color: #ff6b6b;
                    color: #ff6b6b;
                }
        
                .load-more {
                    text-align: center;
                    margin-top: 2rem;
                }
        
                .load-more-btn {
                    background: rgba(255, 255, 255, 0.1);
                    border: 1px solid rgba(255, 255, 255, 0.3);
                    color: #d0d0d0;
                    padding: 1rem 2rem;
                    border-radius: 25px;
                    cursor: pointer;
                    font-weight: 600;
                    transition: all 0.3s ease;
                }
        
                .load-more-btn:hover {
                    background: rgba(78, 205, 196, 0.2);
                    border-color: #4ecdc4;
                    color: #4ecdc4;
                }
        
                /* General Mobile Optimizations */
                @media (max-width: 768px) {
                    /* Navigation and Header */
                    .nav-links {
                        display: none;
                    }
        
                    .hero-section {
                        padding-top: 70px;
                        padding-left: 1rem;
                        padding-right: 1rem;
                    }
        
                    .hero-title {
                        font-size: 2.5rem;
                    }
        
                    .hero-subtitle {
                        font-size: 1rem;
                        padding: 0 0.5rem;
                    }
        
                    /* Profile Section */
                    .profile-section {
                        grid-template-columns: 1fr;
                        text-align: center;
                        gap: 2rem;
                        padding: 0 1rem;
                    }
                    
                    .profile-info {
                        text-align: center;
                    }
        
                    .profile-name {
                        font-size: 2rem;
                    }
        
                    .profile-image {
                        width: 180px;
                        height: 180px;
                        font-size: 3rem;
                    }
                    
                    /* CTA Section */
                    .cta-section {
                        margin: 2rem 1rem;
                        padding: 2rem 1rem;
                    }
                    
                    .cta-benefits {
                        grid-template-columns: 1fr;
                        gap: 1.5rem;
                    }
        
                    .benefit-card {
                        padding: 1.5rem;
                    }
        
                    /* Philosophy, Services, Success Sections */
                    .philosophy-section,
                    .services-section,
                    .success-section {
                        padding: 3rem 0;
                    }
        
                    .philosophy-grid {
                        grid-template-columns: 1fr;
                        gap: 1.5rem;
                    }
        
                    .philosophy-card {
                        padding: 2rem 1.5rem;
                    }
        
                    .services-grid {
                        grid-template-columns: 1fr;
                        gap: 1.5rem;
                    }
        
                    .service-card {
                        padding: 2rem 1.5rem;
                    }
        
                    .success-grid {
                        grid-template-columns: repeat(2, 1fr);
                        gap: 1rem;
                    }
        
                    .success-stat {
                        padding: 1.5rem 1rem;
                    }
        
                    .stat-number {
                        font-size: 2.2rem;
                    }
        
                    .testimonials {
                        grid-template-columns: 1fr;
                        gap: 1.5rem;
                    }
        
                    .testimonial-card {
                        padding: 1.5rem;
                    }
        
                    .container {
                        padding: 0 1rem;
                    }
        
                    /* New sections specific optimizations */
                    /* Banner optimization for mobile */
                    .banner-section {
                        margin: 1rem;
                    }
                    
                    .banner-container {
                        height: 200px;
                        border-radius: 10px;
                    }
                    
                    .banner-image {
                        object-fit: cover;
                        object-position: center center;
                    }
                    
                    .banner-overlay {
                        background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(78, 205, 196, 0.3));
                    }
                    
                    .banner-text {
                        font-size: 1.4rem;
                        padding: 0 1rem;
                        line-height: 1.2;
                    }
                    
                    /* Form optimizations */
                    .form-row {
                        grid-template-columns: 1fr;
                        gap: 1rem;
                    }
                    
                    .comment-form-container {
                        padding: 2rem 1rem;
                        margin: 1rem;
                    }
                    
                    .comments-section {
                        padding: 3rem 0;
                    }
                    
                    .section-title {
                        font-size: 2rem;
                        padding: 0 1rem;
                    }
                    
                    .comment-header {
                        flex-direction: row;
                        align-items: center;
                        gap: 1rem;
                    }
                    
                    .comment-avatar {
                        width: 40px;
                        height: 40px;
                        margin-right: 1rem;
                        margin-bottom: 0;
                        font-size: 1rem;
                    }
                    
                    .comment-name {
                        font-size: 1rem;
                    }
                    
                    .comment-content {
                        font-size: 0.95rem;
                    }
                    
                    .comment-actions {
                        flex-wrap: wrap;
                        gap: 0.5rem;
                    }
                    
                    .like-btn,
                    .reply-btn {
                        font-size: 0.8rem;
                        padding: 0.4rem 0.8rem;
                    }
                }
        
                /* Extra small screens */
                @media (max-width: 480px) {
                    .banner-container {
                        height: 180px;
                        margin: 0 0.5rem;
                    }
                    
                    .banner-text {
                        font-size: 1.2rem;
                        padding: 0 0.5rem;
                    }
                    
                    .hero-section {
                        padding-top: 70px;
                    }
                    
                    .container {
                        padding: 0 0.5rem;
                    }
                    
                    .comment-form-container {
                        margin: 0.5rem;
                        padding: 1.5rem 1rem;
                    }
                    
                    .form-title {
                        font-size: 1.4rem;
                    }
                    
                    .submit-btn {
                        padding: 0.8rem 1.5rem;
                        font-size: 1rem;
                    }
                    
                    .comment-item {
                        padding: 1.5rem;
                        margin-bottom: 1rem;
                    }
                    
                    .comments-title {
                        font-size: 1.5rem;
                    }
                }
        
                /* Tablet optimizations */
                @media (min-width: 481px) and (max-width: 768px) {
                    .banner-container {
                        height: 250px;
                    }
                    
                    .banner-text {
                        font-size: 1.8rem;
                    }
                    
                    .success-grid {
                        grid-template-columns: repeat(4, 1fr);
                    }
                }
        
                /* Large phone optimizations */
                @media (min-width: 376px) and (max-width: 480px) {
                    .banner-container {
                        height: 200px;
                    }
                    
                    .banner-text {
                        font-size: 1.3rem;
                    }
                    
                    .hero-title {
                        font-size: 2.2rem;
                    }
                }
        
                /* Small phone optimizations */
                @media (max-width: 375px) {
                    .banner-container {
                        height: 160px;
                        margin: 0 0.25rem;
                    }
                    
                    .banner-text {
                        font-size: 1rem;
                        padding: 0 0.25rem;
                    }
                    
                    .hero-title {
                        font-size: 2rem;
                    }
                    
                    .hero-subtitle {
                        font-size: 0.9rem;
                    }
                    
                    .profile-name {
                        font-size: 1.8rem;
                    }
                    
                    .profile-image {
                        width: 150px;
                        height: 150px;
                        font-size: 2.5rem;
                    }
                }
        .floating-button-container {
            position: fixed;
            bottom: 30px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            z-index: 1000;
            pointer-events: none;
            }
            @keyframes bounce {
            0%, 100% {
            transform: translateY(0);
            }
            50% {
            transform: translateY(-10px);
            }
            }
            .floating-button {
            position: relative;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 18px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            gap: 10px;
            animation: bounce 2s infinite;
            transition: all 0.3s ease;
            white-space: nowrap;
            pointer-events: auto;
            }
            
            .floating-button:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            }
            
            .floating-button .icon {
            font-size: 24px;
            }
            
            @media (max-width: 768px) {
            .floating-button-container {
            bottom: 20px;
            }
            
            .floating-button {
            font-size: 16px;
            padding: 12px 24px;
            }
            }
            
            @media (max-width: 480px) {
            .floating-button {
            font-size: 14px;
            padding: 10px 20px;
            }
            
            .floating-button .icon {
            font-size: 18px;
            }
            }