        :root {
            --primary-green: rgba(48, 124, 111, 1);
            --dark-green: #6a7c7c;
            --very-dark-green: #062525;
            --light-green-bg: #e4f1ef;
            --medium-light-green: #c2dcd8;
            --very-light-green: #f0f7f6;
            --gradient-green: linear-gradient(135deg, rgba(48, 124, 111, 1) 0%, #20c997 100%);
            --shadow-green: rgba(48, 124, 111, 0.15);
            --text-dark: #062525;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: var(--very-light-green) !important;
            color: var(--text-dark);
        }

        .hero-section {
            background: linear-gradient(135deg, var(--primary-green) 0%, rgba(48, 124, 111, 0.9) 50%, var(--secondary-green) 100%);
            color: white;
            padding: 120px 0 100px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.4;
            animation: float 20s ease-in-out infinite;
        }

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

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

        @keyframes pulse {
            0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.1; }
            50% { transform: scale(1.1) rotate(180deg); opacity: 0.2; }
        }

        .hero-section .container {
            position: relative;
            z-index: 2;
        }

        /* Ensure text content is above all decorative elements */
        .block-signin-text {
            position: relative;
            z-index: 5;
        }

        .block-signin-text__block-text {
            position: relative;
            z-index: 6;
        }

        .section-padding {
            padding: 100px 0;
        }

        .section-title {
            color: var(--primary-green);
            font-weight: 700;
            margin-bottom: 30px;
            position: relative;
            font-size: 2.5rem;
            text-align: center;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient-green);
            border-radius: 2px;
        }

        .feature-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            box-shadow: 0 15px 35px var(--shadow-green);
            border: none;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-green);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 50px var(--shadow-green);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
            margin-bottom: 25px;
            box-shadow: 0 10px 30px var(--shadow-green);
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 15px 40px var(--shadow-green);
        }

        .btn-custom {
            background: var(--gradient-green);
            border: none;
            color: white;
            padding: 15px 35px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px var(--shadow-green);
            position: relative;
            overflow: hidden;
        }

        .btn-custom::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;
        }

        .btn-custom:hover::before {
            left: 100%;
        }

        .btn-custom:hover {
            background: var(--primary-green);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 15px 35px var(--shadow-green);
        }

        .stats-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin: 15px;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .stats-card:hover {
            border-color: var(--primary-green);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px var(--shadow-green);
        }

        .stats-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-green);
            margin-bottom: 10px;
        }

        .login-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 25px;
            box-shadow: 0 25px 60px rgba(0,0,0,0.15), 0 0 0 1px rgba(255,255,255,0.1);
            overflow: hidden;
            border: 2px solid var(--medium-light-green);
            position: relative;
            animation: cardFloat 6s ease-in-out infinite;
        }

        .login-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient-green);
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes cardFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-8px); }
        }

        @keyframes shimmer {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        .login-header {
            background: var(--gradient-green);
            color: white;
            padding: 30px 25px;
            text-align: center;
            font-size: 1.3rem;
            font-weight: 700;
            position: relative;
            overflow: hidden;
        }

        .login-header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
            animation: headerShine 4s ease-in-out infinite;
        }

        @keyframes headerShine {
            0% { transform: translateX(-100%); }
            50% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }

        /* Hero text enhancements */
        .block-signin-text__block-text-title h1 {
            font-size: clamp(2.2rem, 5vw, 3.5rem) !important;
            font-weight: 800 !important;
            line-height: 1.2 !important;
            margin-bottom: 25px !important;
            color: var(--primary-green) !important;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.2), 1px 1px 3px rgba(0,0,0,0.1);
            position: relative;
            z-index: 3;
        }

        .block-signin-text__block-text-description .lead {
            font-size: clamp(1.1rem, 2.5vw, 1.3rem) !important;
            line-height: 1.6 !important;
            color: #333333 !important;
            text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
            margin-bottom: 30px !important;
            z-index: 3;
            position: relative;
        }

        /* Hero decorative elements */
        .hero-decorations {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .hero-icon {
            position: absolute;
            color: rgba(255, 255, 255, 0.1);
            font-size: 2.5rem;
            animation: heroFloat 8s ease-in-out infinite;
        }

        .hero-icon-1 {
            top: 15%;
            left: 10%;
            animation-delay: 0s;
        }

        .hero-icon-2 {
            top: 25%;
            right: 15%;
            animation-delay: 1s;
        }

        .hero-icon-3 {
            top: 60%;
            left: 5%;
            animation-delay: 2s;
        }

        .hero-icon-4 {
            bottom: 20%;
            right: 10%;
            animation-delay: 3s;
        }

        .hero-icon-5 {
            top: 45%;
            left: 15%;
            animation-delay: 4s;
        }

        .hero-icon-6 {
            top: 10%;
            right: 25%;
            animation-delay: 5s;
        }

        @keyframes heroFloat {
            0%, 100% { 
                transform: translateY(0px) rotate(0deg) scale(1);
                opacity: 0.1;
            }
            25% { 
                transform: translateY(-20px) rotate(90deg) scale(1.1);
                opacity: 0.2;
            }
            50% { 
                transform: translateY(-10px) rotate(180deg) scale(0.9);
                opacity: 0.15;
            }
            75% { 
                transform: translateY(-25px) rotate(270deg) scale(1.05);
                opacity: 0.1;
            }
        }

        .step-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 25px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-left: 5px solid var(--primary-green);
            transition: all 0.3s ease;
            position: relative;
        }

        .step-card:hover {
            transform: translateX(10px);
            box-shadow: 0 15px 40px var(--shadow-green);
        }

        .step-number {
            width: 50px;
            height: 50px;
            background: var(--gradient-green);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 18px;
            margin-bottom: 20px;
            box-shadow: 0 8px 25px var(--shadow-green);
        }

        .service-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 25px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 1px solid var(--medium-light-green);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 45px var(--shadow-green);
            border-color: var(--primary-green);
        }

        .testimonial-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 25px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
            transition: all 0.3s ease;
            border: 1px solid var(--medium-light-green);
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px var(--shadow-green);
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 25px;
            left: 25px;
            font-size: 60px;
            color: var(--primary-green);
            opacity: 0.2;
            font-family: Georgia, serif;
        }

        .faq-item {
            background: white;
            border-radius: 15px;
            margin-bottom: 20px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            border: 1px solid var(--medium-light-green);
            overflow: hidden;
        }

        .faq-question {
            padding: 25px 30px;
            cursor: pointer;
            border: none;
            background: none;
            width: 100%;
            text-align: left;
            font-weight: 600;
            color: var(--text-dark);
            font-size: 16px;
            transition: all 0.3s ease;
        }

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

        .faq-answer {
            padding: 0 30px 25px 30px;
            color: #555;
            line-height: 1.6;
        }

        .region-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 1px solid var(--medium-light-green);
        }

        .region-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px var(--shadow-green);
            border-color: var(--primary-green);
        }

        .user-type-card {
            background: #fff;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
            height: 100%;
        }

        .user-type-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            border: 2px solid var(--primary-green);
        }

        /* Icon wrapper themes */
        .icon-wrapper {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 2rem;
            color: #fff;
            transition: all 0.3s ease;
        }

        .influencer-theme {
            background: linear-gradient(135deg, #ff6b6b, #ee5a52);
        }

        .agency-theme {
            background: linear-gradient(135deg, #4ecdc4, #44a08d);
        }

        .business-theme {
            background: linear-gradient(135deg, #667eea, #764ba2);
        }

        .startup-theme {
            background: linear-gradient(135deg, #f093fb, #f5576c);
        }

        .brand-theme {
            background: linear-gradient(135deg, #ffecd2, #fcb69f);
        }

        .user-type-card h3 {
            color: var(--primary-green);
            font-weight: 700;
            margin-bottom: 1rem;
            font-size: 1.25rem;
        }

        .user-type-card p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 0;
        }

        /* Mobile Horizontal Scroll for Who Can Use */
        .user-scroll-container {
            position: relative;
            overflow: hidden;
        }

        .user-scroll-wrapper {
            display: flex;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding: 20px 0;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .user-scroll-wrapper::-webkit-scrollbar {
            display: none;
        }

        .user-scroll-item {
            flex: 0 0 280px;
            margin-right: 20px;
            height: auto;
        }

        .user-scroll-item:last-child {
            margin-right: 0;
        }

        .user-scroll-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary-green);
            color: white;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 4px 15px rgba(48, 124, 111, 0.3);
        }

        .user-scroll-btn:hover {
            background: rgba(48, 124, 111, 0.9);
            transform: translateY(-50%) scale(1.1);
        }

        .user-scroll-btn.prev {
            left: 10px;
        }

        .user-scroll-btn.next {
            right: 10px;
        }

        @media (max-width: 767px) {
            .user-scroll-btn {
                display: block;
            }
        }

        @media (min-width: 768px) {
            .user-scroll-btn {
                display: none;
            }
        }

        .practice-item {
            background: white;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            border-left: 4px solid var(--primary-green);
            transition: all 0.3s ease;
        }

        .practice-item:hover {
            transform: translateX(5px);
            box-shadow: 0 10px 30px var(--shadow-green);
        }

        .whatsapp-float {
            position: fixed;
            bottom: 25px;
            right: 25px;
            background: #25D366;
            color: white;
            border-radius: 50%;
            width: 65px;
            height: 65px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 30px;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
            z-index: 9999;
            transition: all 0.3s ease;
            border: 3px solid white;
        }

        .whatsapp-float:hover {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
        }

        /* Enhanced animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.6s ease-out;
        }

        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--very-light-green);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary-green);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--dark-green);
        }

        /* Enhanced form styling */
        .form-control {
            border: 2px solid var(--medium-light-green);
            border-radius: 10px;
            padding: 12px 20px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: var(--light-green-bg);
        }

        .form-control:focus {
            border-color: var(--primary-green);
            box-shadow: 0 0 0 0.2rem rgba(48, 124, 111, 0.25);
            background: white;
        }

        /* Enhanced badge */
        .badge-custom {
            background: var(--gradient-green);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 14px;
            box-shadow: 0 4px 15px var(--shadow-green);
        }

        /* Services Tabs Styles */
        .services-tabs-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .services-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 40px;
            padding: 0 20px;
        }

        .services-tab {
            background: var(--very-light-green);
            border: 2px solid var(--medium-light-green);
            color: var(--text-dark);
            padding: 12px 24px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            min-width: 140px;
            justify-content: center;
        }

        .services-tab:hover {
            background: var(--light-green-bg);
            border-color: var(--primary-green);
            color: var(--primary-green);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(48, 124, 111, 0.2);
        }

        .services-tab.active {
            background: var(--gradient-green);
            border-color: var(--primary-green);
            color: white;
            box-shadow: 0 4px 20px var(--shadow-green);
        }

        .services-tab i {
            font-size: 1rem;
        }

        .services-content {
            display: none;
            animation: fadeInUp 0.5s ease-out;
        }

        .services-content.active {
            display: block;
        }

        /* Original Service Card Styles */
        .service-card-original {
            background: white;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            border: 1px solid var(--medium-light-green);
            overflow: hidden;
            transition: all 0.3s ease;
            margin-bottom: 30px;
            height: 100%;
        }

        .service-card-original:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
            border-color: var(--primary-green);
        }

        .service-header-original {
            display: flex;
            align-items: center;
            padding: 25px 25px 15px 25px;
            background: linear-gradient(135deg, var(--very-light-green) 0%, white 100%);
        }

        .service-icon-original {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-right: 20px;
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
        }

        .service-icon-original::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: inherit;
            border-radius: 50%;
            opacity: 0.1;
        }

        .service-icon-original i {
            position: relative;
            z-index: 1;
            color: white;
        }

        /* Platform specific background colors */
        .instagram-bg {
            background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
        }

        .facebook-bg {
            background: #1877f2;
        }

        .twitter-bg {
            background: #1da1f2;
        }

        .youtube-bg {
            background: #ff0000;
        }

        .tiktok-bg {
            background: linear-gradient(45deg, #000000 0%, #ffffff 100%);
        }

        .telegram-bg {
            background: #0088cc;
        }

        .whatsapp-bg {
            background: #25d366;
        }

        .spotify-bg {
            background: #1db954;
        }

        .website-bg {
            background: var(--primary-green);
        }

        .linkedin-bg {
            background: #0077b5;
        }

        .more-bg {
            background: var(--gradient-green);
        }

        .service-title-original {
            color: var(--text-dark);
            font-size: 1.3rem;
            font-weight: 700;
            margin: 0;
            line-height: 1.2;
        }

        .service-content-original {
            padding: 0 25px 25px 25px;
        }

        .service-description-original {
            color: var(--text-dark);
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
        }

        /* Stepper Design Styles */
        .stepper-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }

        .stepper-container::before {
            content: '';
            position: absolute;
            top: 30px;
            left: 25px;
            right: 25px;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-green) 0%, var(--medium-light-green) 100%);
            z-index: 1;
        }

        .stepper-step {
            display: flex;
            align-items: flex-start;
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
        }

        .stepper-step:last-child {
            margin-bottom: 0;
        }

        .stepper-number {
            width: 60px;
            height: 60px;
            background: var(--gradient-green);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
            margin-right: 30px;
            flex-shrink: 0;
            box-shadow: 0 8px 25px var(--shadow-green);
            position: relative;
        }

        .stepper-number::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border: 2px solid var(--primary-green);
            border-radius: 50%;
            opacity: 0.3;
        }

        .stepper-content {
            flex: 1;
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border: 1px solid var(--medium-light-green);
            transition: all 0.3s ease;
        }

        .stepper-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
            border-color: var(--primary-green);
        }

        .stepper-title {
            color: var(--text-dark);
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .stepper-title::before {
            content: '';
            width: 6px;
            height: 24px;
            background: var(--gradient-green);
            margin-right: 15px;
            border-radius: 3px;
        }

        .stepper-description {
            color: var(--text-dark);
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .stepper-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .stepper-list li {
            color: var(--text-dark);
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
            line-height: 1.5;
        }

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

        .stepper-list li strong {
            color: var(--primary-green);
            font-weight: 600;
        }

        /* World Map Container Styles */
        .world-map-container {
            position: relative;
        }

        .world-map {
            background: linear-gradient(135deg, var(--very-light-green) 0%, white 100%);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
            border: 2px solid var(--medium-light-green);
        }

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

        .region-card-interactive {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            border: 1px solid var(--medium-light-green);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .region-card-interactive::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-green);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .region-card-interactive:hover::before {
            transform: scaleX(1);
        }

        .region-card-interactive:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 45px rgba(0,0,0,0.12);
            border-color: var(--primary-green);
        }

        .region-flag {
            width: 50px;
            height: 50px;
            background: var(--primary-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            margin-bottom: 20px;
            box-shadow: 0 6px 20px rgba(48, 124, 111, 0.3);
        }

        .region-content h4 {
            margin-bottom: 15px;
        }

        .region-title {
            color: var(--text-dark);
            font-size: 1.3rem;
            font-weight: 700;
            margin: 0 0 15px 0;
        }

        .region-features {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 15px;
        }

        .feature-badge {
            background: var(--primary-green);
            color: white;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            border: 2px solid var(--primary-green);
            transition: all 0.3s ease;
            display: inline-block;
            text-shadow: 0 1px 2px rgba(0,0,0,0.1);
        }

        .feature-badge:hover {
            background: white;
            color: var(--primary-green);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(48, 124, 111, 0.3);
        }

        .region-description {
            color: var(--text-dark);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .region-stats {
            display: flex;
            gap: 20px;
        }

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

        .stat-value {
            display: block;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-green);
            margin-bottom: 5px;
        }

        .stat-unit {
            font-size: 0.8rem;
            color: var(--text-dark);
            font-weight: 600;
        }

        /* Country-specific flag colors */
        .india-flag { background: #FF9933; }
        .bangladesh-flag { background: #006A4E; }
        .north-america-flag { background: #B22234; }
        .europe-flag { background: #003399; }
        .mena-flag { background: #009639; }
        .southeast-asia-flag { background: #FFCC00; }
        .africa-flag { background: #009E49; }
        .latin-america-flag { background: #0033A0; }

        .global-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin-top: 40px;
        }

        .global-stats .stat-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border: 1px solid var(--medium-light-green);
            min-width: 200px;
            transition: all 0.3s ease;
        }

        .global-stats .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
            border-color: var(--primary-green);
        }

        .stat-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            margin: 0 auto 15px;
            box-shadow: 0 6px 20px var(--shadow-green);
        }

        .stat-info {
            display: flex;
            flex-direction: column;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-green);
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-dark);
            font-weight: 600;
        }

        /* Modern Customer Reviews Styles */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .review-card-modern {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            border: 1px solid var(--medium-light-green);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .review-card-modern::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: var(--gradient-green);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .review-card-modern:hover::before {
            transform: scaleX(1);
        }

        .review-card-modern:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
            border-color: var(--primary-green);
        }

        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .reviewer-avatar {
            position: relative;
            margin-right: 15px;
        }

        .reviewer-avatar img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: 3px solid var(--medium-light-green);
            object-fit: cover;
            transition: all 0.3s ease;
        }

        .review-card-modern:hover .reviewer-avatar img {
            border-color: var(--primary-green);
            transform: scale(1.05);
        }

        .reviewer-badge {
            position: absolute;
            bottom: -5px;
            right: -5px;
            width: 24px;
            height: 24px;
            background: var(--gradient-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 12px;
            border: 2px solid white;
        }

        .reviewer-info h5 {
            margin: 0 0 5px 0;
            color: var(--text-dark);
            font-size: 1.1rem;
            font-weight: 700;
        }

        .reviewer-role {
            color: var(--primary-green);
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .review-rating {
            display: flex;
            align-items: center;
            gap: 2px;
        }

        .review-rating i {
            color: #ffd700;
            font-size: 14px;
        }

        .rating-text {
            margin-left: 8px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-dark);
        }

        .review-content {
            margin-bottom: 20px;
        }

        .review-content p {
            color: var(--text-dark);
            font-size: 1rem;
            line-height: 1.6;
            margin: 0;
            position: relative;
        }

        .review-content p::before {
            content: '"';
            font-size: 4rem;
            color: var(--primary-green);
            opacity: 0.1;
            position: absolute;
            top: -20px;
            left: -15px;
            font-family: Georgia, serif;
        }

        .review-stats {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }

        .stat-metric {
            text-align: center;
            flex: 1;
        }

        .stat-number {
            display: block;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-green);
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 0.8rem;
            color: var(--text-dark);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .review-platform {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 15px;
            background: var(--light-green-bg);
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--primary-green);
            border: 1px solid var(--medium-light-green);
        }

        .review-platform i {
            font-size: 1rem;
        }

        /* Enhanced Trust Indicators */
        .trust-indicators-modern {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin-top: 50px;
        }

        .trust-metric {
            display: flex;
            align-items: center;
            gap: 15px;
            background: white;
            padding: 25px 30px;
            border-radius: 15px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid var(--medium-light-green);
            transition: all 0.3s ease;
            min-width: 180px;
        }

        .trust-metric:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
            border-color: var(--primary-green);
        }

        .trust-icon-modern {
            width: 50px;
            height: 50px;
            background: var(--gradient-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            flex-shrink: 0;
        }

        .trust-content {
            text-align: left;
        }

        .trust-content h4 {
            margin: 0 0 5px 0;
            color: var(--text-dark);
            font-size: 1.8rem;
            font-weight: 700;
        }

        .trust-content p {
            margin: 0;
            color: var(--text-dark);
            font-size: 0.9rem;
            font-weight: 600;
        }

        /* Clean Why Choose Section Styling */
        .clean-feature-card {
            background: #ffffff;
            border-radius: 12px;
            padding: 30px 25px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            border: 1px solid #e9ecef;
            transition: all 0.3s ease;
            height: 100%;
            text-align: center;
            position: relative;
        }

        .clean-feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
            border-color: var(--primary-green);
        }

        .feature-icon-simple {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            margin: 0 auto 20px;
            box-shadow: 0 4px 15px rgba(48, 124, 111, 0.2);
        }

        .feature-title-clean {
            color: var(--text-dark);
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .feature-description {
            color: #6c757d;
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
        }

        /* Responsive adjustments for clean why section */
        @media (max-width: 768px) {
            .clean-feature-card {
                padding: 25px 20px;
                margin-bottom: 20px;
            }

            .feature-icon-simple {
                width: 50px;
                height: 50px;
                font-size: 20px;
                margin-bottom: 15px;
            }

            .feature-title-clean {
                font-size: 1.1rem;
            }

            .feature-description {
                font-size: 0.9rem;
            }
        }

        /* FAQ Compact Styles */
        .faq-compact {
            margin-bottom: 30px;
        }

        .faq-item-compact {
            background: white;
            border-radius: 12px;
            margin-bottom: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.06);
            border: 1px solid var(--medium-light-green);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item-compact:hover {
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-color: var(--primary-green);
        }

        .faq-question-compact {
            width: 100%;
            padding: 20px 25px;
            background: none;
            border: none;
            text-align: left;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-dark);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }

        .faq-question-compact:hover {
            background: var(--light-green-bg);
            color: var(--primary-green);
        }

        .faq-question-compact i {
            margin-right: 15px;
            transition: all 0.3s ease;
            color: var(--primary-green);
        }

        .faq-answer-compact {
            padding: 0 25px 20px 25px;
            color: var(--text-dark);
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .stepper-container::before {
                left: 20px;
                right: 20px;
            }

            .stepper-step {
                flex-direction: column;
                text-align: center;
                margin-bottom: 40px;
            }

            .stepper-number {
                margin-right: 0;
                margin-bottom: 20px;
                align-self: center;
            }

            .stepper-content {
                padding: 20px;
            }

            .regions-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .region-stats {
                flex-direction: column;
                gap: 10px;
            }

            .global-stats {
                gap: 20px;
            }

            .testimonial-header {
                flex-direction: column;
                text-align: center;
            }

            .testimonial-avatar {
                margin-right: 0;
                margin-bottom: 15px;
            }

            .testimonial-stats {
                justify-content: center;
            }

            .trust-indicators {
                gap: 20px;
            }

            .carousel-nav {
                gap: 15px;
            }
        }

        @media (max-width: 576px) {
            .world-map {
                padding: 20px;
            }

            .testimonial-card-modern {
                padding: 25px;
            }

            .stepper-content {
                padding: 15px;
            }

            .faq-question-compact {
                padding: 15px 20px;
                font-size: 0.9rem;
            }

            .faq-answer-compact {
                padding: 0 20px 15px 20px;
                font-size: 0.9rem;
            }
        }

        /* Scroll Button Styles */
        .features-scroll-container, .regions-scroll-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .scroll-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary-green);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            cursor: pointer;
            z-index: 10;
            box-shadow: 0 4px 15px rgba(48, 124, 111, 0.3);
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
        }

        .scroll-btn:hover {
            background: var(--dark-green);
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 6px 20px rgba(48, 124, 111, 0.4);
        }

        .scroll-btn.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-left-btn {
            left: -25px;
        }

        .scroll-right-btn {
            right: -25px;
        }

        /* Responsive adjustments for scroll buttons */
        @media (max-width: 1200px) {
            .scroll-left-btn {
                left: -20px;
            }

            .scroll-right-btn {
                right: -20px;
            }
        }

        @media (max-width: 768px) {
            .scroll-btn {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .scroll-left-btn {
                left: -15px;
            }

            .scroll-right-btn {
                right: -15px;
            }
        }

        /* Horizontal Scroll Regions */
        .regions-horizontal-scroll {
            display: flex;
            overflow-x: auto;
            gap: 20px;
            padding: 20px 0;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
            scroll-snap-type: x mandatory;
        }

        .regions-horizontal-scroll::-webkit-scrollbar {
            display: none;
        }

        .regions-horizontal-scroll {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        /* Ensure Font Awesome Pro icons load properly */
        .fas, .fab, .far {
            font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free", "FontAwesome" !important;
            font-weight: 900;
            font-style: normal;
            font-variant: normal;
            text-rendering: auto;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        .fab {
            font-family: "Font Awesome 5 Brands", "FontAwesome" !important;
        }

        .far {
            font-weight: 400 !important;
        }

        /* Fallback for missing icons */
        .fa-map-marker-alt:before {
            content: "\f3c5";
        }

        .fa-globe:before {
            content: "\f0ac";
        }

        .fa-users:before {
            content: "\f0c0";
        }

        .fa-clock:before {
            content: "\f017";
        }

        .fa-star:before {
            content: "\f005";
        }

        .fa-shield-alt:before {
            content: "\f3ed";
        }

        .fa-chevron-left:before {
            content: "\f053";
        }

        .fa-chevron-right:before {
            content: "\f054";
        }

        .fa-check-circle:before {
            content: "\f058";
        }

        .fa-plus:before {
            content: "\f067";
        }

        .fa-minus:before {
            content: "\f068";
        }

        .fa-whatsapp:before {
            content: "\f232";
        }

        /* Enhanced icon visibility */
        .stat-icon i {
            display: block !important;
            font-size: 24px !important;
            line-height: 1 !important;
            color: white !important;
        }

        .trust-icon-modern i {
            display: block !important;
            font-size: 24px !important;
            line-height: 1 !important;
            color: white !important;
        }

        /* Auto-scrolling horizontal features */
        .features-horizontal-scroll-auto {
            display: flex;
            overflow-x: auto;
            scroll-behavior: smooth;
            gap: 20px;
            padding: 20px 0;
            animation: auto-scroll 20s linear infinite;
        }

        .features-horizontal-scroll-auto:hover {
            animation-play-state: paused;
        }

        @keyframes auto-scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* Duplicate cards for seamless loop */
        .features-horizontal-scroll-auto::after {
            content: '';
            flex: 0 0 20px;
        }

        .feature-card-horizontal {
            flex: 0 0 400px;
            min-width: 400px;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(0, 123, 255, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card-horizontal::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-green), var(--secondary-color));
        }

        .feature-card-horizontal:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
        }

        .region-card-horizontal {
            flex: 0 0 320px;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(0, 123, 255, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .region-card-horizontal::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-green), var(--secondary-color));
        }

        .region-card-horizontal:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
        }

        .region-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .region-flag {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: white;
            position: relative;
        }

        .region-flag i {
            position: relative;
            z-index: 2;
        }

        .region-flag::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(0,123,255,0.8), rgba(0,123,255,0.6));
            z-index: 1;
        }

        .india-flag::before { background: linear-gradient(135deg, #FF9933, #128807); }
        .bangladesh-flag::before { background: linear-gradient(135deg, #006A4E, #F42A41); }
        .north-america-flag::before { background: linear-gradient(135deg, #B22234, #3C3B6E); }
        .europe-flag::before { background: linear-gradient(135deg, #003399, #FFD700); }
        .mena-flag::before { background: linear-gradient(135deg, #009639, #CE1126); }
        .southeast-asia-flag::before { background: linear-gradient(135deg, #ED1C24, #FFFFFF); }
        .africa-flag::before { background: linear-gradient(135deg, #007A33, #FFD100); }
        .latin-america-flag::before { background: linear-gradient(135deg, #0033A0, #D52B1E); }

        .region-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text-dark);
            margin: 0;
        }

        .region-features {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 16px;
        }

        .feature-badge {
            background: var(--primary-green);
            color: white;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border: 2px solid var(--primary-green);
            transition: all 0.3s ease;
            display: inline-block;
            text-shadow: 0 1px 2px rgba(0,0,0,0.1);
        }

        .feature-badge:hover {
            background: white;
            color: var(--primary-green);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(48, 124, 111, 0.3);
        }

        .region-description {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 16px;
        }

        .region-stats {
            display: flex;
            gap: 16px;
        }

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

        .stat-value {
            display: block;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary-green);
        }

        .stat-unit {
            display: block;
            font-size: 0.75rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 4px;
        }

        /* Global Stats */
        .global-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .stat-card {
            display: flex;
            align-items: center;
            gap: 16px;
            background: white;
            padding: 24px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 123, 255, 0.1);
            min-width: 200px;
        }

        .stat-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-color));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
        }

        .stat-info {
            text-align: left;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 4px;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Testimonial Cards */
        .testimonial-card {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(0, 123, 255, 0.1);
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-green), var(--secondary-color));
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
        }

        .testimonial-content {
            margin-bottom: 20px;
        }

        .testimonial-text {
            font-style: italic;
            color: var(--text-dark);
            line-height: 1.6;
            margin: 0;
            font-size: 0.95rem;
            position: relative;
        }

        .testimonial-text::before {
            content: '"';
            font-size: 3rem;
            color: var(--primary-green);
            position: absolute;
            top: -10px;
            left: -15px;
            font-family: Georgia, serif;
        }

        .testimonial-text::after {
            content: '"';
            font-size: 3rem;
            color: var(--primary-green);
            position: absolute;
            bottom: -30px;
            right: -15px;
            font-family: Georgia, serif;
        }

        .testimonial-author {
            text-align: center;
            padding-top: 15px;
            border-top: 1px solid rgba(0, 123, 255, 0.1);
        }

        .author-name {
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        .author-role {
            color: var(--text-muted);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Missing Modern Styles for Why Choose Section */
        .section-header-modern {
            margin-bottom: 2rem;
        }

        .section-icon-wrapper {
            display: flex;
            justify-content: center;
        }

        .section-icon-modern {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            box-shadow: 0 8px 25px var(--shadow-green);
        }

        /* Fixed Why Choose Section Colors */
        #why-choose {
            background: var(--gradient-green);
            color: white;
        }

        .section-title-modern {
            color: white !important;
            font-size: var(--font-size-3xl);
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .section-subtitle-modern {
            color: rgba(255, 255, 255, 0.95) !important;
            font-size: var(--font-size-lg);
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto;
        }

        .feature-card-modern {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            height: 100%;
        }

        .feature-card-modern::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: var(--gradient-green);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .feature-card-modern:hover::before {
            transform: scaleX(1);
        }

        .feature-card-modern:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 25px 60px rgba(0,0,0,0.15);
        }

        .feature-card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
        }

        .feature-icon-modern {
            width: 60px;
            height: 60px;
            background: var(--gradient-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 6px 20px var(--shadow-green);
        }

        .feature-number {
            width: 40px;
            height: 40px;
            background: var(--light-green-bg);
            color: var(--primary-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.1rem;
            border: 2px solid var(--medium-light-green);
        }

        .feature-card-body {
            flex: 1;
        }

        .feature-title-modern {
            color: var(--text-dark) !important;
            font-size: var(--font-size-xl);
            font-weight: 600;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .feature-list-modern {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .feature-list-modern li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 12px;
            font-size: var(--font-size-sm);
            line-height: 1.5;
            color: var(--text-dark) !important;
        }

        .feature-list-modern li i {
            color: var(--primary-green);
            margin-right: 10px;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .cta-modern {
            padding: 30px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .cta-text {
            color: white !important;
            font-size: var(--font-size-lg);
            font-weight: 600;
            margin-bottom: 20px;
        }

        .btn-modern-primary {
            background: white;
            color: var(--primary-green) !important;
            border: 2px solid white;
            padding: 15px 35px;
            border-radius: 30px;
            font-weight: 600;
            font-size: var(--font-size-base);
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(255,255,255,0.2);
            text-decoration: none;
        }

        .btn-modern-primary:hover {
            background: var(--primary-green);
            color: white !important;
            border-color: var(--primary-green);
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(255,255,255,0.3);
            text-decoration: none;
        }

        /* Service Header Horizontal Styles */
        /* Enhanced Service Cards */
        .service-card-horizontal {
            flex: 0 0 400px;
            min-width: 400px;
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid var(--medium-light-green);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            margin-right: 20px;
        }

        .service-card-horizontal::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-green);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .service-card-horizontal:hover::before {
            transform: scaleX(1);
        }

        .service-card-horizontal:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
            border-color: var(--primary-green);
        }

        .service-header-horizontal {
            margin-bottom: 20px;
        }

        .service-icon-horizontal {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            flex-shrink: 0;
            box-shadow: 0 6px 20px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
        }

        .service-card-horizontal:hover .service-icon-horizontal {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        }

        .service-title-horizontal {
            color: var(--text-dark);
            font-size: var(--font-size-xl);
            font-weight: 700;
            margin: 0;
            line-height: 1.2;
        }

        .service-content-horizontal {
            flex: 1;
        }

        .service-description-horizontal {
            color: #6c757d;
            font-size: var(--font-size-sm);
            line-height: 1.6;
            margin: 0;
        }

        /* Services horizontal scroll container */
        .services-horizontal-scroll {
            display: flex;
            overflow-x: auto;
            scroll-behavior: smooth;
            gap: 0;
            padding: 20px 0;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
            scroll-snap-type: x mandatory;
        }

        .services-horizontal-scroll::-webkit-scrollbar {
            display: none;
        }

        .service-card-horizontal {
            scroll-snap-align: start;
        }

        /* Ultra Refined Services Section Design */
        .stats-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 25px;
            padding: 50px 30px;
            margin-bottom: 60px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-green), var(--secondary-green), #FFD700);
        }

        .stat-card {
            padding: 25px;
            transition: all 0.4s ease;
            position: relative;
        }

        .stat-card:hover {
            transform: translateY(-8px);
        }

        .stat-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 24px;
            box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
            transition: all 0.4s ease;
        }

        .stat-card:hover .stat-icon {
            transform: scale(1.1) rotate(10deg);
            box-shadow: 0 12px 35px rgba(76, 175, 80, 0.4);
        }

        .stat-number {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 700;
            color: var(--primary-green);
            line-height: 1;
            margin-bottom: 8px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .stat-label {
            font-size: clamp(1rem, 2.5vw, 1.1rem);
            color: #6c757d;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        /* Ultra Refined Services Scroll Container */
        .services-ultra-container {
            position: relative;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
            border-radius: 30px;
            padding: 40px 20px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
        }

        .services-ultra-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, #E4405F, #1877F2, #1DA1F2, #FF0000, #000000, #0088CC);
            opacity: 0.8;
        }

        .services-scroll-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }

        .services-ultra-scroll {
            display: flex;
            gap: 30px;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding: 30px 15px;
            scrollbar-width: none;
            -ms-overflow-style: none;
            scroll-snap-type: x mandatory;
        }

        .services-ultra-scroll::-webkit-scrollbar {
            display: none;
        }

        .service-card-ultra {
            flex: 0 0 280px;
            min-width: 280px;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
            border: 2px solid transparent;
            transition: all 0.5s ease;
            position: relative;
            scroll-snap-align: start;
            backdrop-filter: blur(10px);
            height: 320px;
        }

        .service-card-ultra:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
            border-color: var(--primary-green);
        }

        .service-card-cta-ultra {
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            border: none;
            color: white;
        }

        .service-gradient-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1;
        }

        .service-card-ultra:hover .service-gradient-overlay {
            opacity: 1;
        }

        .service-card-header {
            padding: 20px 20px 10px;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .service-icon-ultra {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            margin: 0 auto 25px;
            transition: all 0.5s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            position: relative;
        }

        .service-icon-ultra::before {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            border-radius: 50%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .service-card-ultra:hover .service-icon-ultra {
            transform: scale(1.15) rotate(10deg);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        }

        .service-card-ultra:hover .service-icon-ultra::before {
            opacity: 1;
        }

        .service-title-ultra {
            font-size: clamp(1.1rem, 2.2vw, 1.3rem);
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 0;
            line-height: 1.1;
            letter-spacing: 0.5px;
            margin-top: 8px;
        }

        .service-card-body {
            padding: 0 20px 20px;
            text-align: center;
        }

        .service-desc-ultra {
            font-size: clamp(0.8rem, 1.8vw, 0.9rem);
            color: #6c757d;
            line-height: 1.5;
            margin-bottom: 15px;
            text-align: justify;
            display: -webkit-box;
            -webkit-line-clamp: 6;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .service-features-ultra {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            justify-content: center;
            margin-top: 10px;
        }

        .feature-badge {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            color: #495057;
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 0.75rem;
            font-weight: 600;
            border: 2px solid #dee2e6;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

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

        .service-card-ultra:hover .feature-badge {
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            color: white;
            border-color: var(--primary-green);
            transform: translateY(-2px);
        }

        .service-card-ultra:hover .feature-badge::before {
            left: 100%;
        }

        /* Enhanced Scroll Buttons */
        .services-scroll-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            background: white;
            border: 3px solid var(--primary-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-green);
            font-size: 20px;
            cursor: pointer;
            transition: all 0.4s ease;
            z-index: 10;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .services-scroll-btn:hover {
            background: var(--primary-green);
            color: white;
            transform: translateY(-50%) scale(1.15);
            box-shadow: 0 12px 35px rgba(76, 175, 80, 0.3);
        }

        .services-scroll-left {
            left: -30px;
        }

        .services-scroll-right {
            right: -30px;
        }

        .btn-ultra {
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.4s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }

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

        .btn-ultra:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .btn-ultra:hover::before {
            left: 100%;
        }

        /* Enhanced Scroll Indicator */
        .scroll-indicator-ultra {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 25px;
            padding: 15px 25px;
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .scroll-dots {
            gap: 10px;
        }

        .scroll-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #dee2e6;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .scroll-dot.active {
            background: var(--primary-green);
            transform: scale(1.2);
        }

        .scroll-dot:hover {
            background: var(--secondary-green);
            transform: scale(1.1);
        }

        /* Enhanced Gradient Backgrounds */
        .instagram-gradient { background: linear-gradient(45deg, #E4405F, #F56040, #FFDC80); }
        .youtube-gradient { background: linear-gradient(45deg, #FF0000, #FF4444, #FF6B6B); }
        .tiktok-gradient { background: linear-gradient(45deg, #000000, #333333, #666666); }
        .facebook-gradient { background: linear-gradient(45deg, #1877F2, #42A5F5, #64B5F6); }
        .telegram-gradient { background: linear-gradient(45deg, #0088CC, #229ED9, #4FC3F7); }
        .twitter-gradient { background: linear-gradient(45deg, #1DA1F2, #0D8BF0, #42A5F5); }
        .spotify-gradient { background: linear-gradient(45deg, #1DB954, #1ED760, #4CAF50); }
        .multi-gradient { background: linear-gradient(45deg, #667eea, #764ba2, #f093fb); }
        .website-gradient { background: linear-gradient(45deg, #6C63FF, #8B7CF6, #A855F7); }
        .cta-gradient { background: linear-gradient(45deg, #FFD700, #FFA500, #FF8C00); }

        /* Icon Background Colors */
        .instagram-bg { background: linear-gradient(45deg, #E4405F, #F56040); }
        .youtube-bg { background: linear-gradient(45deg, #FF0000, #FF4444); }
        .tiktok-bg { background: linear-gradient(45deg, #000000, #333333); }
        .facebook-bg { background: linear-gradient(45deg, #1877F2, #42A5F5); }
        .telegram-bg { background: linear-gradient(45deg, #0088CC, #229ED9); }
        .twitter-bg { background: linear-gradient(45deg, #1DA1F2, #0D8BF0); }
        .spotify-bg { background: linear-gradient(45deg, #1DB954, #1ED760); }
        .multi-bg { background: linear-gradient(45deg, #667eea, #764ba2); }
        .website-bg { background: linear-gradient(45deg, #6C63FF, #8B7CF6); }
        .cta-bg { background: linear-gradient(45deg, #FFD700, #FFA500); }

        /* Responsive Ultra Refinements */
        @media (max-width: 576px) {
            .stats-section {
                padding: 35px 20px;
                border-radius: 20px;
            }

            .services-ultra-container {
                border-radius: 20px;
                padding: 25px 15px;
            }

            .service-card-ultra {
                flex: 0 0 260px;
                min-width: 260px;
            }

            .service-card-header {
                padding: 20px 15px 12px;
            }

            .service-card-body {
                padding: 0 15px 20px;
            }

            .service-icon-ultra {
                width: 65px;
                height: 65px;
                font-size: 26px;
            }

            .services-scroll-left {
                left: -20px;
            }

            .services-scroll-right {
                right: -20px;
            }

            .services-scroll-btn {
                width: 50px;
                height: 50px;
                font-size: 16px;
            }
        }

        @media (min-width: 768px) {
            .service-card-ultra {
                flex: 0 0 300px;
                min-width: 300px;
            }

            .services-ultra-scroll {
                gap: 35px;
                padding: 35px 20px;
            }
        }

        @media (min-width: 1200px) {
            .service-card-ultra {
                flex: 0 0 320px;
                min-width: 320px;
            }

            .service-card-header {
                padding: 30px 25px 18px;
            }

            .service-card-body {
                padding: 0 25px 30px;
            }

            .services-ultra-scroll {
                gap: 40px;
                padding: 40px 25px;
            }

            .service-icon-ultra {
                width: 90px;
                height: 90px;
                font-size: 36px;
            }
        }

        /* Mobile optimizations for service cards */
        @media (max-width: 576px) {
            .service-card-horizontal {
                flex: 0 0 320px;
                min-width: 320px;
                padding: 25px 20px;
                margin-right: 15px;
            }

            .service-icon-horizontal {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }

            .service-title-horizontal {
                font-size: var(--font-size-lg);
            }

            .service-description-horizontal {
                font-size: var(--font-size-sm);
            }
        }

        @media (max-width: 768px) {
            .service-card-horizontal {
                flex: 0 0 350px;
                min-width: 350px;
                padding: 25px;
            }
        }

        /* New Services Modern Container CSS */
        .services-modern-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            margin: 0 auto;
        }

        .services-scroll-wrapper-modern {
            position: relative;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .services-modern-scroll {
            display: flex;
            gap: 24px;
            overflow-x: auto;
            overflow-y: hidden;
            scroll-behavior: smooth;
            scroll-snap-type: x mandatory;
            padding: 20px 0;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .services-modern-scroll::-webkit-scrollbar {
            display: none;
        }

        .service-col-modern {
            flex: 0 0 350px;
            min-width: 350px;
            scroll-snap-align: start;
        }

        .services-scroll-btn-modern {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: var(--gradient-green);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            z-index: 10;
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
            transition: all 0.3s ease;
        }

        .services-scroll-btn-modern:hover {
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }

        .services-scroll-left-modern {
            left: -25px;
        }

        .services-scroll-right-modern {
            right: -25px;
        }

        .service-desc-modern {
            font-size: 0.95rem;
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        @media (max-width: 768px) {
            .service-col-modern {
                flex: 0 0 300px;
                min-width: 300px;
            }
            
            .services-scroll-btn-modern {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .service-col-modern {
                flex: 0 0 280px;
                min-width: 280px;
            }
        }

        /* Enhanced Mobile Responsive Typography and Layout */
        
        /* Base responsive font sizes using clamp() for fluid scaling */
        :root {
            --font-size-xs: clamp(0.75rem, 2vw, 0.875rem);
            --font-size-sm: clamp(0.875rem, 2.5vw, 1rem);
            --font-size-base: clamp(1rem, 3vw, 1.125rem);
            --font-size-lg: clamp(1.125rem, 3.5vw, 1.25rem);
            --font-size-xl: clamp(1.25rem, 4vw, 1.5rem);
            --font-size-2xl: clamp(1.5rem, 5vw, 2rem);
            --font-size-3xl: clamp(2rem, 6vw, 2.5rem);
            --font-size-4xl: clamp(2.5rem, 7vw, 3rem);
        }

        /* Apply responsive font sizes */
        body {
            font-size: var(--font-size-base);
            line-height: 1.6;
        }

        h1 {
            font-size: var(--font-size-4xl);
            line-height: 1.2;
        }

        h2 {
            font-size: var(--font-size-3xl);
            line-height: 1.3;
        }

        h3 {
            font-size: var(--font-size-2xl);
            line-height: 1.4;
        }

        h4 {
            font-size: var(--font-size-xl);
            line-height: 1.4;
        }

        h5 {
            font-size: var(--font-size-lg);
            line-height: 1.5;
        }

        .lead {
            font-size: var(--font-size-lg);
        }

        .section-title {
            font-size: var(--font-size-3xl);
            margin-bottom: clamp(1rem, 4vw, 2rem);
        }

        /* Enhanced Mobile Optimizations */
        @media (max-width: 576px) {
            /* Hero Section Mobile */
            .hero-section {
                padding: 80px 0 60px;
                min-height: 100vh;
                display: flex;
                align-items: center;
            }

            /* Hide decorative elements on mobile for better performance and cleaner look */
            .hero-decorations {
                display: none;
            }

            .block-signin-text__block-text-title h1 {
                font-size: clamp(1.8rem, 8vw, 2.8rem) !important;
                margin-bottom: 1.5rem !important;
                text-align: center !important;
                color: var(--primary-green) !important;
                text-shadow: 2px 2px 6px rgba(0,0,0,0.15), 1px 1px 2px rgba(0,0,0,0.1) !important;
                font-weight: 800 !important;
                line-height: 1.2 !important;
                z-index: 3;
                position: relative;
            }

            .block-signin-text__block-text-description p {
                font-size: clamp(1rem, 4vw, 1.2rem) !important;
                margin-bottom: 1.5rem !important;
                text-align: center !important;
                color: #333333 !important;
                text-shadow: 1px 1px 2px rgba(255,255,255,0.8) !important;
                line-height: 1.5 !important;
                z-index: 3;
                position: relative;
            }

            /* Mobile login card optimization */
            .login-card {
                margin-top: 2rem;
                animation: none; /* Disable floating animation on mobile for better performance */
            }

            /* Card adjustments */
            .component_card .card {
                margin-top: 2rem;
                border-radius: 15px;
                box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            }

            /* Form controls */
            .form-control {
                font-size: 16px; /* Prevents zoom on iOS */
                padding: 12px 15px;
            }

            /* Button optimizations */
            .btn {
                font-size: var(--font-size-base);
                padding: 12px 20px;
                border-radius: 8px;
            }

            .btn-block {
                width: 100%;
                margin-bottom: 1rem;
            }

            /* Section padding */
            .section-padding {
                padding: 60px 0;
            }

            /* Feature cards mobile */
            .feature-card {
                padding: 25px 20px;
                margin-bottom: 25px;
            }

            .feature-icon {
                width: 60px;
                height: 60px;
                font-size: 24px;
                margin-bottom: 20px;
            }

            /* Service cards horizontal scroll */
            .service-card-horizontal {
                flex: 0 0 300px;
                min-width: 300px;
                padding: 20px;
            }

            .service-title-horizontal {
                font-size: var(--font-size-lg);
            }

            .service-description-horizontal {
                font-size: var(--font-size-sm);
                line-height: 1.5;
            }

            /* Region cards */
            .region-card-horizontal {
                flex: 0 0 280px;
                padding: 20px;
            }

            .region-title {
                font-size: var(--font-size-lg);
            }

            .region-description {
                font-size: var(--font-size-sm);
            }

            /* Stats and metrics */
            .stats-number, .stat-number {
                font-size: var(--font-size-xl);
            }

            .stats-card, .stat-card {
                margin: 10px 0;
                padding: 20px 15px;
            }

            /* Testimonials */
            .testimonial-card {
                padding: 20px;
                margin-bottom: 20px;
            }

            .testimonial-text {
                font-size: var(--font-size-sm);
            }

            .author-name {
                font-size: var(--font-size-base);
            }

            /* FAQ */
            .faq-question-compact {
                padding: 15px 20px;
                font-size: var(--font-size-sm);
            }

            .faq-answer-compact {
                padding: 0 20px 15px 20px;
                font-size: var(--font-size-sm);
            }

            /* Practice items */
            .practice-item {
                padding: 15px;
                margin-bottom: 15px;
            }

            .practice-item h3 {
                font-size: var(--font-size-base);
            }

            /* Stepper mobile */
            .stepper-step {
                margin-bottom: 30px;
            }

            .stepper-number {
                width: 50px;
                height: 50px;
                font-size: 18px;
                margin-bottom: 15px;
            }

            .stepper-content {
                padding: 20px 15px;
            }

            .stepper-title {
                font-size: var(--font-size-lg);
            }

            .stepper-description {
                font-size: var(--font-size-sm);
            }

            /* User type cards */
            .user-type-card {
                padding: 20px;
                margin-bottom: 15px;
            }

            .user-type-card h3 {
                font-size: var(--font-size-lg);
            }

            /* Trust indicators mobile */
            .trust-metric {
                padding: 20px 15px;
                margin-bottom: 15px;
                min-width: auto;
                flex-direction: column;
                text-align: center;
            }

            .trust-icon-modern {
                margin-bottom: 10px;
            }

            /* Scroll buttons mobile */
            .scroll-btn {
                width: 40px;
                height: 40px;
                font-size: 14px;
            }

            .scroll-left-btn {
                left: 10px;
            }

            .scroll-right-btn {
                right: 10px;
            }

            /* Why choose section mobile */
            .feature-card-modern {
                padding: 20px;
                margin-bottom: 20px;
            }

            .feature-title-modern {
                font-size: var(--font-size-lg);
            }

            .feature-list-modern li {
                font-size: var(--font-size-sm);
                margin-bottom: 8px;
            }

            /* Global stats mobile */
            .global-stats {
                gap: 15px;
                flex-direction: column;
                align-items: center;
            }

            .global-stats .stat-card {
                width: 100%;
                max-width: 300px;
            }
        }

        @media (max-width: 768px) {
            /* Tablet and small desktop adjustments */
            .container {
                padding-left: 20px;
                padding-right: 20px;
            }

            .row {
                margin-left: -10px;
                margin-right: -10px;
            }

            .col-lg-7, .col-lg-5, .col-lg-6, .col-lg-4 {
                padding-left: 10px;
                padding-right: 10px;
            }

            /* Hero section tablet */
            .hero-section {
                padding: 90px 0 70px;
                min-height: 100vh;
                display: flex;
                align-items: center;
            }

            /* Optimize decorative elements for tablet */
            .hero-decorations {
                opacity: 0.5;
            }

            .hero-icon {
                font-size: 2rem;
            }

            /* Hero text for tablet */
            .block-signin-text__block-text-title h1 {
                font-size: clamp(2rem, 6vw, 3rem) !important;
                color: var(--primary-green) !important;
                text-shadow: 2px 2px 6px rgba(0,0,0,0.15) !important;
                text-align: center !important;
            }

            .block-signin-text__block-text-description .lead {
                font-size: clamp(1.1rem, 3vw, 1.25rem) !important;
                color: #333333 !important;
                text-shadow: 1px 1px 2px rgba(255,255,255,0.8) !important;
                text-align: center !important;
            }

            /* Service cards tablet */
            .service-card-horizontal {
                flex: 0 0 350px;
                min-width: 350px;
            }

            /* Region cards tablet */
            .region-card-horizontal {
                flex: 0 0 320px;
            }

            /* Stepper tablet */
            .stepper-container::before {
                display: none; /* Hide connecting line on mobile */
            }

            .stepper-step {
                flex-direction: column;
                text-align: center;
                margin-bottom: 40px;
            }

            .stepper-number {
                margin-right: 0;
                margin-bottom: 20px;
                align-self: center;
            }

            /* Trust indicators tablet */
            .trust-indicators-modern {
                gap: 20px;
            }

            .trust-metric {
                min-width: 160px;
            }

            /* Feature cards tablet */
            .clean-feature-card {
                margin-bottom: 25px;
            }
        }

        @media (max-width: 992px) {
            /* Large tablet adjustments */
            .section-padding {
                padding: 80px 0;
            }

            /* Hide scroll buttons on very small screens */
            .scroll-btn {
                display: none;
            }

            /* Make horizontal scrolls more touch-friendly */
            .services-horizontal-scroll,
            .regions-horizontal-scroll {
                padding: 10px;
                -webkit-overflow-scrolling: touch;
                scroll-snap-type: x mandatory;
            }

            .service-card-horizontal,
            .region-card-horizontal {
                scroll-snap-align: start;
            }
        }

        /* Improved touch targets for mobile */
        @media (max-width: 768px) {
            .faq-question-compact,
            .btn,
            .services-tab {
                min-height: 44px; /* Apple's recommended touch target size */
                display: flex;
                align-items: center;
            }

            /* Better spacing for touch */
            .faq-item-compact {
                margin-bottom: 10px;
            }

            .services-tab {
                margin-bottom: 10px;
                padding: 12px 20px;
            }

            /* Improved form spacing */
            .form-group {
                margin-bottom: 1.5rem;
            }

            /* Better button spacing */
            .btn + .btn {
                margin-top: 10px;
            }
        }

        /* Landscape mobile optimizations */
        @media (max-width: 768px) and (orientation: landscape) {
            .hero-section {
                padding: 40px 0;
            }

            .section-padding {
                padding: 40px 0;
            }

            .stepper-step {
                margin-bottom: 25px;
            }
        }

        /* Ultra-wide screen optimizations */
        @media (min-width: 1400px) {
            .container {
                max-width: 1320px;
            }

            .section-title {
                font-size: 3.5rem;
            }

            .service-card-horizontal,
            .region-card-horizontal {
                flex: 0 0 420px;
            }
        }

        /* High DPI display optimizations */
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .feature-icon,
            .service-icon-horizontal,
            .region-flag {
                image-rendering: -webkit-optimize-contrast;
                image-rendering: crisp-edges;
            }
        }

        /* Dark mode support for modern devices */
        @media (prefers-color-scheme: dark) {
            /* This is optional - only if you want to support dark mode */
            /* You can add dark theme styles here if needed */
        }

        /* Reduced motion for accessibility */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* Mobile-specific button improvements */
        .btn-mobile {
            min-height: 44px;
            font-size: 16px;
            padding: 12px 24px;
            border-radius: 8px;
            transition: all 0.2s ease;
        }

        .card-mobile {
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        body.mobile-device {
            -webkit-text-size-adjust: 100%;
            -ms-text-size-adjust: 100%;
        }

        /* Improved touch targets */
        @media (max-width: 768px) {
            .clickable, .btn, .faq-question-compact, a {
                min-height: 44px;
                min-width: 44px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }

            /* Better form controls for mobile */
            .form-control {
                -webkit-appearance: none;
                -moz-appearance: none;
                appearance: none;
                border-radius: 8px;
                font-size: 16px; /* Prevents zoom on iOS */
                padding: 12px 16px;
                line-height: 1.5;
            }

            /* Improved select dropdowns */
            select.form-control {
                background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
                background-position: right 8px center;
                background-repeat: no-repeat;
                background-size: 16px 12px;
                padding-right: 40px;
            }

            /* Better spacing for mobile */
            .container {
                padding-left: 15px;
                padding-right: 15px;
            }

            .row {
                margin-left: -15px;
                margin-right: -15px;
            }

            [class*="col-"] {
                padding-left: 15px;
                padding-right: 15px;
            }

            /* Sticky footer adjustments for mobile keyboards */
            .whatsapp-float {
                bottom: 80px; /* Higher on mobile to avoid keyboard */
                right: 20px;
                z-index: 1050;
            }

            /* Mobile-friendly modals */
            .modal-dialog {
                margin: 10px;
                max-width: calc(100vw - 20px);
            }

            /* Better mobile navigation */
            .navbar-toggler {
                border: none;
                padding: 8px 12px;
            }

            .navbar-toggler:focus {
                box-shadow: none;
                outline: 2px solid var(--primary-green);
                outline-offset: 2px;
            }
        }

        /* Horizontal scroll for small devices */
        @media (max-width: 768px) {
            /* Testimonials horizontal scroll */
            .testimonials-mobile-scroll {
                overflow-x: auto;
                overflow-y: hidden;
                white-space: nowrap;
                padding-bottom: 15px;
                scrollbar-width: thin;
                scrollbar-color: var(--primary-green) transparent;
            }

            .testimonials-mobile-scroll::-webkit-scrollbar {
                height: 6px;
            }

            .testimonials-mobile-scroll::-webkit-scrollbar-track {
                background: rgba(0,0,0,0.1);
                border-radius: 3px;
            }

            .testimonials-mobile-scroll::-webkit-scrollbar-thumb {
                background: var(--primary-green);
                border-radius: 3px;
            }

            .testimonial-card-mobile {
                display: inline-block;
                white-space: normal;
                width: 280px;
                margin-right: 15px;
                vertical-align: top;
            }

            /* How it works horizontal scroll */
            .stepper-mobile-scroll {
                overflow-x: auto;
                overflow-y: hidden;
                white-space: nowrap;
                padding-bottom: 15px;
                scrollbar-width: thin;
                scrollbar-color: var(--primary-green) transparent;
            }

            .stepper-mobile-scroll::-webkit-scrollbar {
                height: 6px;
            }

            .stepper-mobile-scroll::-webkit-scrollbar-track {
                background: rgba(0,0,0,0.1);
                border-radius: 3px;
            }

            .stepper-mobile-scroll::-webkit-scrollbar-thumb {
                background: var(--primary-green);
                border-radius: 3px;
            }

            .stepper-step-mobile {
                display: inline-block;
                white-space: normal;
                width: 300px;
                margin-right: 20px;
                vertical-align: top;
            }

            /* Why choose horizontal scroll */
            .features-mobile-scroll {
                overflow-x: auto;
                overflow-y: hidden;
                white-space: nowrap;
                padding-bottom: 15px;
                scrollbar-width: thin;
                scrollbar-color: var(--primary-green) transparent;
            }

            .features-mobile-scroll::-webkit-scrollbar {
                height: 6px;
            }

            .features-mobile-scroll::-webkit-scrollbar-track {
                background: rgba(0,0,0,0.1);
                border-radius: 3px;
            }

            .features-mobile-scroll::-webkit-scrollbar-thumb {
                background: var(--primary-green);
                border-radius: 3px;
            }

            .feature-card-mobile {
                display: inline-block;
                white-space: normal;
                width: 280px;
                margin-right: 15px;
                vertical-align: top;
            }
        }

        /* Landscape mobile optimizations */
        @media screen and (max-width: 768px) and (orientation: landscape) {
            .hero-section {
                padding: 40px 0;
            }

            .section-padding {
                padding: 40px 0;
            }

            .whatsapp-float {
                bottom: 20px;
                right: 20px;
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
        }

        /* High contrast mode support */
        @media (prefers-contrast: high) {
            .btn, .feature-card, .service-card-horizontal {
                border: 2px solid currentColor;
            }
        }

        /* Focus improvements for accessibility */
        .btn:focus,
        .form-control:focus,
        .faq-question-compact:focus {
            outline: 2px solid var(--primary-green);
            outline-offset: 2px;
            box-shadow: 0 0 0 4px rgba(48, 124, 111, 0.2);
        }

        /* Smooth scroll behavior */
        html {
            scroll-behavior: smooth;
        }

        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }
        }

        /* Print styles */
        @media print {
            .scroll-btn,
            .whatsapp-float,
            .btn {
                display: none !important;
            }

            .section-padding {
                padding: 20px 0;
            }

            body {
                font-size: 12pt;
                line-height: 1.4;
            }
        }

        /* Premium Service Cards Styles */
        .bg-gradient-light {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .section-header-premium {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-badge {
            display: inline-block;
            padding: 8px 20px;
            background: linear-gradient(45deg, var(--primary-green), #2a6b5f);
            color: white;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

        .section-title-premium {
            font-size: 2.5rem;
            font-weight: 700;
            color: #212529;
            margin-bottom: 1rem;
        }

        .section-subtitle-premium {
            font-size: 1.1rem;
            color: #6c757d;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Horizontal Scroll Container */
        .services-premium-container {
            position: relative;
            margin: 2rem 0;
        }

        .services-scroll-wrapper-premium {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .services-horizontal-scroll {
            display: flex;
            gap: 2rem;
            padding: 2rem;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .services-horizontal-scroll::-webkit-scrollbar {
            display: none;
        }

        .service-card-premium-scroll {
            flex: 0 0 350px;
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            height: auto;
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

        .service-card-premium-scroll::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--card-gradient, linear-gradient(45deg, #007bff, #0056b3));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .service-card-premium-scroll:hover::before {
            opacity: 1;
        }

        .service-card-premium-scroll:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }

        /* Scroll Buttons */
        .scroll-btn-premium {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: none;
            background: linear-gradient(45deg, var(--primary-green), #2a6b5f);
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 8px 25px rgba(48, 124, 111, 0.3);
        }

        .scroll-btn-premium:hover {
            background: linear-gradient(45deg, #2a6b5f, #1e5347);
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 12px 35px rgba(48, 124, 111, 0.4);
        }

        .scroll-left-premium {
            left: -25px;
        }

        .scroll-right-premium {
            right: -25px;
        }

        /* Optimized Color Themes */
        .instagram-theme {
            background: linear-gradient(45deg, #E4405F, #F56040, #FFDC80);
            --card-gradient: linear-gradient(45deg, #E4405F, #F56040);
        }

        .youtube-theme {
            background: linear-gradient(45deg, #FF0000, #FF4444);
            --card-gradient: linear-gradient(45deg, #FF0000, #FF4444);
        }

        .tiktok-theme {
            background: linear-gradient(45deg, #000000, #FF0050, #00F2EA);
            --card-gradient: linear-gradient(45deg, #000000, #FF0050);
        }

        .facebook-theme {
            background: linear-gradient(45deg, #1877F2, #42A5F5);
            --card-gradient: linear-gradient(45deg, #1877F2, #42A5F5);
        }

        .twitter-theme {
            background: linear-gradient(45deg, #1DA1F2, #1976D2);
            --card-gradient: linear-gradient(45deg, #1DA1F2, #1976D2);
        }

        .telegram-theme {
            background: linear-gradient(45deg, #0088CC, #64B5F6);
            --card-gradient: linear-gradient(45deg, #0088CC, #64B5F6);
        }

        .spotify-theme {
            background: linear-gradient(45deg, var(--primary-green), #3a9d89);
            --card-gradient: linear-gradient(45deg, var(--primary-green), #3a9d89);
        }

        .other-theme {
            background: linear-gradient(45deg, #6C5CE7, #A29BFE);
            --card-gradient: linear-gradient(45deg, #6C5CE7, #A29BFE);
        }

        .traffic-theme {
            background: linear-gradient(45deg, var(--primary-green), #4fa692);
            --card-gradient: linear-gradient(45deg, var(--primary-green), #4fa692);
        }

        .service-icon-wrapper {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            color: white;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }

        .service-icon-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.2);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .service-card-premium-scroll:hover .service-icon-wrapper::before {
            opacity: 1;
        }

        .service-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #212529;
            margin-bottom: 1rem;
        }

        .service-description {
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        .service-features {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .feature-item {
            background: linear-gradient(45deg, #f8f9fa, #e9ecef);
            color: #495057;
            padding: 0.4rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 500;
            border: 1px solid #dee2e6;
            transition: all 0.3s ease;
        }

        .service-card-premium-scroll:hover .feature-item {
            background: linear-gradient(45deg, #e9ecef, #dee2e6);
            transform: translateY(-2px);
        }

        .service-action {
            margin-top: auto;
        }

        .btn-service-premium {
            background: linear-gradient(45deg, var(--primary-green), #2a6b5f);
            color: white;
            padding: 0.8rem 1.8rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            border: none;
            box-shadow: 0 5px 15px rgba(48, 124, 111, 0.3);
        }

        .btn-service-premium:hover {
            background: linear-gradient(45deg, #2a6b5f, #1e5347);
            color: white;
            text-decoration: none;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(48, 124, 111, 0.4);
        }

        /* Scroll Indicators */
        .scroll-indicators-premium {
            text-align: center;
            margin-top: 2rem;
        }

        .scroll-dots-premium {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .scroll-dot-premium {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #dee2e6;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .scroll-dot-premium.active {
            background: linear-gradient(45deg, var(--primary-green), #2a6b5f);
            transform: scale(1.2);
        }

        .scroll-dot-premium:hover {
            background: var(--primary-green);
            transform: scale(1.1);
        }

        .scroll-hint {
            color: #6c757d;
            font-size: 0.9rem;
            margin: 0;
        }

        .scroll-hint i {
            color: var(--primary-green);
        }

        /* Mobile Optimizations */
        @media (max-width: 768px) {
            .section-title-premium {
                font-size: 2rem;
            }
            
            .service-card-premium-scroll {
                flex: 0 0 280px;
                padding: 1.5rem;
            }
            
            .scroll-btn-premium {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            
            .scroll-left-premium {
                left: -20px;
            }
            
            .scroll-right-premium {
                right: -20px;
            }
            
            .cta-title {
                font-size: 1.5rem;
            }
            
            .services-horizontal-scroll {
                gap: 1.5rem;
                padding: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .service-card-premium-scroll {
                flex: 0 0 250px;
                padding: 1.2rem;
            }
            
            .services-horizontal-scroll {
                gap: 1rem;
                padding: 1rem;
            }
        }