        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html, body {
            font-family: var(--panel-font);
            overflow-x: hidden;
            background: var(--panel-bg);
            width: 100%;
            max-width: 100vw;
        }

        section {
            overflow-x: hidden;
            width: 100%;
        }

        /* Mobil iÃ§in container ayarlarÄ± */
        @media (max-width: 768px) {
            .container {
                padding-left: 20px;
                padding-right: 20px;
            }

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

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

        /* Header */
        .subpages-header {
            background-color: var(--panel-primary) !important;
            padding: 20px;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .subpages-header.active {
            background-color: #fff !important;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
        }

        .subpages-header .logo img {
            width: 100px;
            height: auto;
            transition: all 0.3s ease;
        }

        .nav-toggle-btn {
            font-size: 26px;
            background: none;
            border: none;
            cursor: pointer;
            color: #fff;
            transition: all 0.3s ease;
            padding: 8px;
            display: none;
            position: relative;
            z-index: 1001;
        }

        .nav-toggle-btn:focus {
            outline: none;
        }

        .subpages-header.active .nav-toggle-btn {
            color: var(--panel-primary);
        }

        .nav-toggle-btn .menu-icon,
        .nav-toggle-btn.active .close-icon {
            display: inline-block;
        }

        .nav-toggle-btn .close-icon,
        .nav-toggle-btn.active .menu-icon {
            display: none;
        }

        /* Navbar Overlay */
        .navbar-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 998;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .navbar-overlay.active {
            display: block;
            opacity: 1;
        }

        @media (max-width: 991px) {
            .nav-toggle-btn {
                display: block;
            }

            .nav-wrap {
                display: none;
            }
        }

        .navbar {
            position: fixed;
            top: 80px;
            left: -350px;
            bottom: 0;
            background-color: #fff;
            max-width: 320px;
            width: 100%;
            padding: 30px 20px;
            transition: transform 0.4s ease;
            overflow-y: auto;
            box-shadow: 5px 0 20px rgba(0,0,0,0.15);
            z-index: 999;
        }

        .navbar.active {
            transform: translateX(350px);
        }

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

        .nav-item {
            margin-bottom: 10px;
        }

        .navbar-link {
            color: var(--panel-primary);
            font-size: 16px;
            display: block;
            font-weight: 500;
            padding: 12px 20px;
            opacity: 0.7;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .navbar-link:hover {
            opacity: 1;
            background: rgba(247, 209, 121, 0.18);
            color: var(--panel-primary);
        }

        .navbar-link.active {
            opacity: 1;
            background: rgba(47, 77, 105, 0.12);
        }

        .action-btn {
            background: linear-gradient(135deg, var(--panel-primary), var(--panel-primary-2));
            color: #fff;
            padding: 8px 20px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            box-shadow: 0 10px 24px rgba(47, 77, 105, 0.25);
        }

        .action-btn:hover {
            transform: translateY(-2px);
            color: #fff;
        }

        .subpages-header.active .action-btn {
            background: linear-gradient(135deg, var(--panel-primary), var(--panel-primary-2));
            color: #fff;
        }

        .subpages-header.active .action-btn:hover {
            transform: translateY(-2px);
        }

        @media (min-width: 992px) {
            .nav-toggle-btn {
                display: none;
            }

            .subpages-header {
                background: transparent !important;
                padding: 25px 20px;
            }

            .subpages-header.active {
                background-color: #fff !important;
            }

            .subpages-header .logo img {
                width: 180px;
            }

            .navbar,
            .navbar.active {
                all: unset;
                display: block;
            }

            .navbar-list {
                display: flex;
                align-items: center;
                gap: 15px;
            }

            .navbar-link {
                color: #fff;
                font-size: 15px;
                padding: 8px 15px;
            }

            .subpages-header.active .navbar-link {
                color: var(--panel-primary);
            }

            .navbar-link:hover {
                background: rgba(247, 209, 121, 0.2);
                color: var(--panel-accent-2);
            }

            .navbar-link.active {
                background: rgba(255, 255, 255, 0.15);
            }

            .subpages-header.active .navbar-link:hover {
                background: rgba(247, 209, 121, 0.15);
                color: var(--panel-primary);
            }

            .subpages-header.active .navbar-link.active {
                background: rgba(47, 77, 105, 0.1);
            }

            .action-btn {
                padding: 10px 25px;
                font-size: 15px;
            }
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--panel-primary) 0%, var(--panel-primary-2) 100%);
            padding: 150px 0 120px;
            position: relative;
            overflow: hidden;
            min-height: 600px;
            display: flex;
            align-items: center;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: movePattern 30s linear infinite;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: rgba(255, 255, 255, 0.03);
            clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
        }

        @keyframes movePattern {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

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

        .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 25px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .hero-badge i {
            margin-right: 8px;
            color: var(--panel-accent-2);
        }

        .hero-title {
            font-size: 56px;
            font-weight: 800;
            color: #fff !important;
            margin-bottom: 25px;
            line-height: 1.2;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .hero-title .highlight {
            color: var(--panel-accent-2) !important;
            position: relative;
            display: inline-block;
        }

        .hero-subtitle .highlight {
            color: var(--panel-accent-2) !important;
            font-weight: 700;
        }

        .hero-title-white {
            color: #ffffff;
        }

        .hero-subtitle-white {
            color: #ffffff;
        }

        .hero-subtitle {
            font-size: 22px;
            color: #ffffff !important;
            margin-bottom: 40px;
            line-height: 1.7;
            font-weight: 400;
        }

        .hero-features {
            display: flex;
            gap: 30px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .hero-feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #fff;
            font-size: 16px;
        }

        .hero-feature-item i {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            backdrop-filter: blur(10px);
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-hero {
            padding: 18px 45px;
            font-size: 17px;
            font-weight: 600;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            position: relative;
            overflow: hidden;
        }

        .btn-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: all 0.4s ease;
        }

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

        .btn-hero-primary {
            background: #fff;
            color: var(--panel-primary);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .btn-hero-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(255, 255, 255, 0.4);
            color: var(--panel-primary);
        }

        .btn-hero-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(10px);
        }

        .btn-hero-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: #fff;
            transform: translateY(-3px);
            color: #fff;
        }

        .hero-image {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .hero-phone-mockup {
            position: relative;
            animation: float 6s ease-in-out infinite;
        }

        .hero-phone-device {
            width: min(320px, 100%);
            aspect-ratio: 9 / 16;
            border-radius: 46px;
            padding: 14px;
            margin: 0 auto;
            background: rgba(0, 0, 0, 0.22);
            border: 2px solid rgba(255, 255, 255, 0.22);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
            backdrop-filter: blur(12px);
            position: relative;
        }

        .hero-phone-device::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 42%;
            height: 22px;
            background: rgba(0, 0, 0, 0.35);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 0 0 16px 16px;
            z-index: 2;
        }

        .hero-phone-device::after {
            content: '';
            position: absolute;
            top: 16px;
            left: calc(50% + 55px);
            width: 10px;
            height: 10px;
            background: rgba(255, 255, 255, 0.25);
            border-radius: 50%;
            box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.25);
            z-index: 3;
        }

        .hero-phone-screen {
            width: 100%;
            height: 100%;
            border-radius: 34px;
            overflow: hidden;
            background: #0b1220;
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
        }

        .hero-phone-screen img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            object-position: center top;
        }

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

        .hero-stats {
            position: absolute;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 20px 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            animation: fadeInUp 1s ease-out;
        }

        .hero-stat-1 {
            top: 10%;
            left: -10%;
        }

        .hero-stat-2 {
            bottom: 20%;
            right: -5%;
        }

        .hero-stats h4 {
            font-size: 28px;
            font-weight: 700;
            color: var(--panel-primary);
            margin: 0 0 5px 0;
        }

        .hero-stats p {
            font-size: 14px;
            color: #6c757d;
            margin: 0;
        }

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

        .floating-icons {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
        }

        .floating-icon {
            position: absolute;
            font-size: 40px;
            opacity: 0.1;
            animation: floatRandom 20s ease-in-out infinite;
        }

        .floating-icon:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
        .floating-icon:nth-child(2) { top: 20%; right: 15%; animation-delay: 2s; }
        .floating-icon:nth-child(3) { bottom: 30%; left: 5%; animation-delay: 4s; }
        .floating-icon:nth-child(4) { bottom: 10%; right: 20%; animation-delay: 6s; }
        .floating-icon:nth-child(5) { top: 50%; left: 8%; animation-delay: 8s; }

        @keyframes floatRandom {
            0%, 100% { 
                transform: translateY(0px) rotate(0deg); 
            }
            25% { 
                transform: translateY(-20px) rotate(5deg); 
            }
            50% { 
                transform: translateY(-40px) rotate(-5deg); 
            }
            75% { 
                transform: translateY(-20px) rotate(5deg); 
            }
        }

        /* Stats Section */
        .stats-section {
            background: #fff;
            padding: 80px 0;
        }

        .stat-card {
            text-align: center;
            padding: 40px 20px;
            border-radius: 15px;
            background: #fff;
            box-shadow: 0 5px 25px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }

        .stat-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--panel-primary) 0%, var(--panel-primary-2) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 35px;
            color: #fff;
        }

        .stat-number {
            font-size: 40px;
            font-weight: 700;
            color: var(--panel-primary);
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 16px;
            color: #6c757d;
            font-weight: 500;
        }

        /* Countries Section */
        .countries-section {
            padding: 80px 0;
            background: #fff;
        }

        .country-card {
            background: #fff;
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 3px 15px rgba(0,0,0,0.05);
            cursor: pointer;
        }

        .country-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 30px rgba(47, 77, 105, 0.15);
        }

        .country-flag {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .country-card:hover .country-flag {
            transform: scale(1.1);
        }

        .country-name {
            font-size: 14px;
            font-weight: 600;
            color: #2d3748;
        }

        .country-card-more {
            border: 2px dashed var(--panel-primary);
            background: rgba(47, 77, 105, 0.05);
        }

        .more-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--panel-primary) 0%, var(--panel-primary-2) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 35px;
            color: #fff;
        }

        /* Services Section */
        .services-section {
            padding: 80px 0;
            background: var(--panel-bg);
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 38px;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 15px;
        }

        .section-title p {
            font-size: 18px;
            color: #6c757d;
            max-width: 700px;
            margin: 0 auto;
        }

        .service-card {
            background: #fff;
            border-radius: 15px;
            padding: 35px 25px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0,0,0,0.06);
            height: 100%;
            cursor: pointer;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(47, 77, 105, 0.15);
        }

        .service-icon {
            font-size: 45px;
            margin-bottom: 20px;
            display: block;
            transition: all 0.3s ease;
        }

        .service-title {
            font-size: 18px;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 12px;
        }

        .service-description {
            font-size: 14px;
            color: #6c757d;
            line-height: 1.6;
        }

        /* Features Section */
        .features-section {
            padding: 80px 0;
            background: #fff;
        }

        .feature-card {
            display: flex;
            align-items: flex-start;
            padding: 30px;
            background: var(--panel-bg);
            border-radius: 15px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            background: #fff;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transform: translateX(10px);
        }

        .feature-icon-box {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--panel-primary) 0%, var(--panel-primary-2) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .feature-icon-box i {
            font-size: 28px;
            color: #fff;
        }

        .feature-content h4 {
            font-size: 20px;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 10px;
        }

        .feature-content p {
            font-size: 15px;
            color: #6c757d;
            margin: 0;
            line-height: 1.6;
        }

        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background: var(--panel-bg);
        }

        .faq-item {
            background: #fff;
            border-radius: 12px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 3px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 8px 25px rgba(47, 77, 105, 0.1);
        }

        .faq-question {
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: #2d3748;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            color: var(--panel-primary);
        }

        .faq-question i {
            font-size: 18px;
            color: var(--panel-primary);
            transition: all 0.3s ease;
        }

        .faq-question.active i {
            transform: rotate(180deg);
        }

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

        .faq-answer.active {
            max-height: 500px;
            padding: 0 30px 25px;
        }

        .faq-answer p {
            color: #6c757d;
            line-height: 1.8;
            margin: 0;
        }

        /* SEO Content Section */
        .seo-content-section {
            padding: 80px 0;
            background: #fff;
        }

        .seo-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .seo-content h1 {
            font-size: 32px;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 20px;
        }

        .seo-content h2 {
            font-size: 26px;
            font-weight: 600;
            color: #2d3748;
            margin-top: 35px;
            margin-bottom: 15px;
        }

        .seo-content h3 {
            font-size: 22px;
            font-weight: 600;
            color: #2d3748;
            margin-top: 30px;
            margin-bottom: 12px;
        }

        .seo-content p {
            font-size: 16px;
            color: #4a5568;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .seo-content ul {
            margin: 20px 0;
            padding-left: 25px;
        }

        .seo-content li {
            font-size: 16px;
            color: #4a5568;
            line-height: 1.8;
            margin-bottom: 10px;
        }

        .seo-content a {
            color: var(--panel-primary);
            font-weight: 600;
            text-decoration: none;
            border-bottom: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .seo-content a:hover {
            color: var(--panel-accent-2);
            border-bottom: 2px solid var(--panel-accent-2);
        }

        .seo-highlight {
            background: rgba(47, 77, 105, 0.1);
            padding: 25px;
            border-left: 4px solid var(--panel-primary);
            border-radius: 8px;
            margin: 25px 0;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--panel-primary) 0%, var(--panel-primary-2) 100%);
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 400px;
            height: 400px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }

        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -50%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-title {
            font-size: 36px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 20px;
        }

        .cta-text {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Footer */
        .footer {
            background-color: var(--panel-bg);
            padding: 15px;
            margin-top: 0;
        }

        .footer-top {
            padding: 60px 0;
        }

        .footer-wrap {
            margin-bottom: 30px;
        }

        .footer-brand img {
            width: 150px;
            height: auto;
        }

        .footer-list {
            list-style: none;
            padding: 0;
            margin-top: 30px;
        }

        .footer-list-title {
            font-size: 18px;
            color: var(--panel-primary);
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer-link {
            color: var(--panel-primary);
            font-size: 15px;
            font-weight: 500;
            text-decoration: none;
            opacity: 0.8;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-link:hover {
            opacity: 1;
            color: var(--panel-accent-2);
            padding-left: 5px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(47, 77, 105, 0.15);
            padding-top: 30px;
            padding-bottom: 20px;
        }

        .footer-bottom .footer-text {
            color: rgba(45, 55, 72, 0.6);
            font-size: 13px;
            font-weight: 500;
            text-align: left;
            line-height: 1.8;
        }

        .footer-bottom span {
            color: rgba(45, 55, 72, 0.6);
            font-size: 13px;
            font-weight: 500;
        }

        .footer-bottom span b {
            font-weight: 700;
        }

        @media (min-width: 992px) {
            .footer {
                padding: 0;
                margin-top: 0;
            }

            .footer-top {
                padding: 80px 0 40px;
            }

            .footer-bottom .footer-text {
                max-width: 800px;
            }
        }

        @media (min-width: 1400px) {
            .footer-bottom .footer-text {
                max-width: 1050px;
            }
        }


        /* Responsive */
        @media (max-width: 1200px) {
            .hero-stat-1 {
                left: 0;
            }
            .hero-stat-2 {
                right: 0;
            }
        }

        @media (max-width: 992px) {
            .hero-title {
                font-size: 42px;
            }

            .hero-subtitle {
                font-size: 18px;
            }

            .hero-image {
                margin-top: 50px;
            }

            .hero-stats {
                position: relative;
                display: inline-block;
                margin: 15px;
            }

            .hero-stat-1, .hero-stat-2 {
                position: relative;
                top: auto;
                left: auto;
                right: auto;
                bottom: auto;
            }

            .section-title h2 {
                font-size: 32px;
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                padding: 100px 0 60px;
                min-height: auto;
            }

            .floating-icons {
                display: none;
            }

            .hero-section::after {
                display: none;
            }

            .hero-badge {
                font-size: 11px;
                padding: 6px 14px;
                margin-bottom: 20px;
            }

            .hero-title {
                font-size: 28px;
                margin-bottom: 20px;
            }

            .hero-subtitle {
                font-size: 15px;
                margin-bottom: 25px;
            }

            .hero-features {
                gap: 12px;
                margin-bottom: 30px;
            }

            .hero-feature-item {
                font-size: 13px;
            }

            .hero-feature-item i {
                width: 32px;
                height: 32px;
                font-size: 14px;
            }

            .hero-buttons {
                flex-direction: column;
                width: 100%;
                gap: 12px;
            }

            .btn-hero {
                width: 100%;
                justify-content: center;
                padding: 15px 25px;
                font-size: 15px;
            }

            .hero-image {
                display: none !important;
            }

            .section-title {
                margin-bottom: 40px;
                padding: 0 10px;
            }

            .section-title h2 {
                font-size: 24px;
            }

            .section-title p {
                font-size: 15px;
            }

            .stats-section,
            .services-section,
            .countries-section,
            .features-section,
            .faq-section,
            .seo-content-section,
            .cta-section {
                padding: 50px 0;
            }

            .stat-card {
                margin-bottom: 15px;
                padding: 30px 15px;
            }

            .stat-icon {
                width: 60px;
                height: 60px;
                font-size: 28px;
            }

            .stat-number {
                font-size: 28px;
            }

            .stat-label {
                font-size: 14px;
            }

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

            .service-icon {
                font-size: 32px;
                margin-bottom: 15px;
            }

            .service-title {
                font-size: 15px;
            }

            .service-description {
                font-size: 13px;
            }

            .feature-card {
                flex-direction: column;
                text-align: center;
                padding: 20px 15px;
            }

            .feature-icon-box {
                margin: 0 auto 15px;
            }

            .feature-content h4 {
                font-size: 17px;
            }

            .feature-content p {
                font-size: 14px;
            }

            .faq-question {
                padding: 18px 20px;
                font-size: 14px;
            }

            .faq-answer {
                padding: 0 20px;
            }

            .faq-answer.active {
                padding: 0 20px 18px;
            }

            .faq-answer p {
                font-size: 14px;
            }

            .cta-title {
                font-size: 26px;
            }

            .cta-text {
                font-size: 15px;
                padding: 0 15px;
            }

            .seo-content {
                padding: 0 10px;
            }

            .seo-content h1 {
                font-size: 24px;
            }

            .seo-content h2 {
                font-size: 20px;
                margin-top: 25px;
            }

            .seo-content h3 {
                font-size: 18px;
                margin-top: 20px;
            }

            .seo-content p, .seo-content li {
                font-size: 14px;
            }

            .seo-highlight {
                padding: 20px;
                margin: 20px 0;
            }

            .footer {
                padding: 40px 0 20px;
            }

            .footer-text {
                font-size: 13px;
            }

            .floating-icon {
                display: none;
            }

            .hero-image {
                display: none !important;
            }
        }

        @media (max-width: 576px) {
            .navbar-modern {
                padding: 12px 0;
            }

            .navbar-brand-custom img {
                height: 35px;
            }

            .hero-section {
                padding: 90px 0 50px;
            }

            .hero-badge {
                font-size: 10px;
                padding: 5px 12px;
            }

            .hero-title {
                font-size: 24px;
                margin-bottom: 15px;
            }

            .hero-subtitle {
                font-size: 14px;
                margin-bottom: 20px;
            }

            .hero-features {
                flex-direction: column;
                gap: 10px;
                align-items: flex-start;
            }

            .hero-feature-item {
                font-size: 12px;
            }

            .hero-feature-item i {
                width: 28px;
                height: 28px;
                font-size: 12px;
            }

            .btn-hero {
                padding: 14px 20px;
                font-size: 14px;
            }

            .stats-section,
            .services-section,
            .countries-section,
            .features-section,
            .faq-section,
            .seo-content-section,
            .cta-section {
                padding: 40px 0;
            }

            .section-title h2 {
                font-size: 22px;
            }

            .section-title p {
                font-size: 14px;
            }

            .stat-card {
                padding: 25px 15px;
            }

            .stat-icon {
                width: 55px;
                height: 55px;
                font-size: 24px;
            }

            .stat-number {
                font-size: 26px;
            }

            .stat-label {
                font-size: 13px;
            }

            .service-card {
                padding: 18px 12px;
            }

            .service-icon {
                font-size: 30px;
                margin-bottom: 12px;
            }

            .service-title {
                font-size: 14px;
                margin-bottom: 8px;
            }

            .service-description {
                font-size: 12px;
            }

            .country-card {
                padding: 15px 10px;
            }

            .country-flag {
                width: 55px;
                height: 55px;
                margin-bottom: 10px;
            }

            .more-icon {
                width: 55px;
                height: 55px;
                font-size: 24px;
            }

            .country-name {
                font-size: 11px;
            }

            .feature-card {
                padding: 18px 15px;
                margin-bottom: 15px;
            }

            .feature-icon-box {
                width: 50px;
                height: 50px;
                margin-bottom: 12px;
            }

            .feature-icon-box i {
                font-size: 22px;
            }

            .feature-content h4 {
                font-size: 16px;
                margin-bottom: 8px;
            }

            .feature-content p {
                font-size: 13px;
            }

            .faq-question {
                padding: 15px 18px;
                font-size: 13px;
            }

            .faq-question i {
                font-size: 14px;
            }

            .faq-answer p {
                font-size: 13px;
                line-height: 1.6;
            }

            .cta-title {
                font-size: 24px;
            }

            .cta-text {
                font-size: 14px;
            }

            .seo-content h1 {
                font-size: 22px;
            }

            .seo-content h2 {
                font-size: 18px;
                margin-top: 20px;
            }

            .seo-content h3 {
                font-size: 16px;
                margin-top: 18px;
            }

            .seo-content p, .seo-content li {
                font-size: 13px;
                line-height: 1.7;
            }

            .seo-highlight {
                padding: 15px;
                margin: 15px 0;
            }

            .footer {
                padding: 30px 0 15px;
            }

            .footer-logo {
                height: 45px;
            }

            .footer-text {
                font-size: 12px;
            }

            .footer-social {
                gap: 10px;
            }

            .social-btn {
                width: 38px;
                height: 38px;
                font-size: 16px;
            }

            .footer-links {
                flex-direction: column;
                gap: 8px;
            }

            .footer-links a {
                font-size: 13px;
            }

            .footer-bottom p {
                font-size: 12px;
            }
        }
    
