
        
        /* Pure CSS Hero Section Styles */
        .gseo-hero {
            padding: 140px 0 80px;
            background: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 100%);
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        
        /* Pure CSS Animated Background Shapes */
        .gseo-hero-bg-shape {
            position: absolute;
            border-radius: 50%;
            background: var(--gseo-gradient);
            opacity: 0.05;
            z-index: 0;
        }
        
        .gseo-hero-bg-shape-1 {
            width: 600px;
            height: 600px;
            top: -250px;
            right: -150px;
            animation: gseo-float 25s infinite ease-in-out;
        }
        
        .gseo-hero-bg-shape-2 {
            width: 400px;
            height: 400px;
            bottom: -150px;
            left: -100px;
            animation: gseo-float 20s infinite ease-in-out reverse;
        }
        
        .gseo-hero-bg-shape-3 {
            width: 250px;
            height: 250px;
            top: 40%;
            left: 15%;
            animation: gseo-float 22s infinite ease-in-out;
        }
        
        @keyframes gseo-float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(8deg); }
        }
        
        /* Pure CSS Particle Animation */
        .gseo-hero-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }
        
        .gseo-particle {
            position: absolute;
            display: block;
            pointer-events: none;
            opacity: 0;
            border-radius: 50%;
        }
        
        .gseo-particle:nth-child(1) {
            left: 10%;
            width: 10px;
            height: 10px;
            background: var(--gseo-primary);
            animation: gseo-fadeInUp 15s infinite;
            animation-delay: 0s;
        }
        
        .gseo-particle:nth-child(2) {
            left: 20%;
            width: 8px;
            height: 8px;
            background: var(--gseo-secondary);
            animation: gseo-fadeInUp 12s infinite;
            animation-delay: 1s;
        }
        
        .gseo-particle:nth-child(3) {
            left: 30%;
            width: 12px;
            height: 12px;
            background: var(--gseo-primary);
            animation: gseo-fadeInUp 18s infinite;
            animation-delay: 2s;
        }
        
        .gseo-particle:nth-child(4) {
            left: 40%;
            width: 6px;
            height: 6px;
            background: var(--gseo-secondary);
            animation: gseo-fadeInUp 10s infinite;
            animation-delay: 3s;
        }
        
        .gseo-particle:nth-child(5) {
            left: 50%;
            width: 9px;
            height: 9px;
            background: var(--gseo-primary);
            animation: gseo-fadeInUp 14s infinite;
            animation-delay: 4s;
        }
        
        .gseo-particle:nth-child(6) {
            left: 60%;
            width: 11px;
            height: 11px;
            background: var(--gseo-secondary);
            animation: gseo-fadeInUp 16s infinite;
            animation-delay: 5s;
        }
        
        .gseo-particle:nth-child(7) {
            left: 70%;
            width: 7px;
            height: 7px;
            background: var(--gseo-primary);
            animation: gseo-fadeInUp 11s infinite;
            animation-delay: 6s;
        }
        
        .gseo-particle:nth-child(8) {
            left: 80%;
            width: 10px;
            height: 10px;
            background: var(--gseo-secondary);
            animation: gseo-fadeInUp 13s infinite;
            animation-delay: 7s;
        }
        
        .gseo-particle:nth-child(9) {
            left: 90%;
            width: 8px;
            height: 8px;
            background: var(--gseo-primary);
            animation: gseo-fadeInUp 17s infinite;
            animation-delay: 8s;
        }
        
        @keyframes gseo-fadeInUp {
            0% {
                opacity: 0;
                transform: translateY(100vh) scale(0);
            }
            10% {
                opacity: 1;
                transform: translateY(100vh) scale(1);
            }
            100% {
                opacity: 0;
                transform: translateY(-100vh) scale(0.5);
            }
        }
        
        /* Writing/Content Pattern Background */
        .gseo-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230c4a6e' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.7;
            z-index: 0;
        }
        
        .gseo-hero-container {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            min-height: 80vh;
        }
        
        .gseo-hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        
        /* Hero Text with Pure CSS Animation */
        .gseo-hero-text {
            animation: gseo-fadeInLeft 1s ease;
        }
        
        @keyframes gseo-fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-70px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        /* Pure CSS Animated Title */
        .gseo-hero-title {
            font-size: 64px;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 30px;
            color: var(--gseo-dark);
            position: relative;
            overflow: hidden;
        }
        
        .gseo-hero-title span {
            display: inline-block;
            animation: gseo-reveal 0.8s ease forwards;
            opacity: 0;
            transform: translateY(40px);
        }
        
        .gseo-hero-title span:nth-child(1) { animation-delay: 0.1s; }
        .gseo-hero-title span:nth-child(2) { animation-delay: 0.2s; }
        .gseo-hero-title span:nth-child(3) { animation-delay: 0.3s; }
        .gseo-hero-title span:nth-child(4) { animation-delay: 0.4s; }
        .gseo-hero-title span:nth-child(5) { animation-delay: 0.5s; }
        .gseo-hero-title span:nth-child(6) { animation-delay: 0.6s; }
        
        @keyframes gseo-reveal {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .gseo-hero-title .gseo-highlight {
            background: var(--gseo-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }
        
        .gseo-hero-title .gseo-highlight::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: var(--gseo-gradient);
            border-radius: 5px;
            z-index: -1;
            transform: scaleX(0);
            transform-origin: left;
            animation: gseo-underline 1.2s ease forwards 0.8s;
        }
        
        @keyframes gseo-underline {
            to { transform: scaleX(1); }
        }
        
        /* Pure CSS Animated Subtitle */
        .gseo-hero-subtitle {
            font-size: 22px;
            color: var(--gseo-gray);
            margin-bottom: 40px;
            line-height: 1.6;
            opacity: 0;
            animation: gseo-fadeIn 1.2s ease forwards 0.7s;
        }
        
        @keyframes gseo-fadeIn {
            to { opacity: 1; }
        }
        
        /* Pure CSS Animated Buttons */
        .gseo-hero-buttons {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
            opacity: 0;
            animation: gseo-fadeInUp 1.2s ease forwards 0.9s;
        }
        
        @keyframes gseo-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .gseo-hero-btn {
            padding: 18px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 17px;
            text-decoration: none;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }
        
        .gseo-hero-btn-primary {
            background: var(--gseo-gradient);
            color: #ffffff;
            box-shadow: 0 6px 20px rgba(12, 74, 110, 0.4);
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }
        
        .gseo-hero-btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.3);
            transition: left 0.6s ease;
        }
        
        .gseo-hero-btn-primary:hover::before {
            left: 100%;
        }
        
        .gseo-hero-btn-primary:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(12, 74, 110, 0.5);
            color: #ffffff;
        }
        
        .gseo-hero-btn-secondary {
            background: rgba(255, 255, 255, 0.95);
            color: var(--gseo-primary);
            border: 2px solid rgba(12, 74, 110, 0.25);
        }
        
        .gseo-hero-btn-secondary:hover {
            background: rgba(255, 255, 255, 1);
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
            color: var(--gseo-primary);
        }
        
        /* Hero Image with Pure CSS Animation */
        .gseo-hero-image {
            position: relative;
            animation: gseo-fadeInRight 1.2s ease;
        }
        
        @keyframes gseo-fadeInRight {
            from {
                opacity: 0;
                transform: translateX(70px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .gseo-hero-image-wrapper {
            position: relative;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
            transform: perspective(1200px) rotateY(-8deg);
            transition: transform 0.6s ease;
        }
        
        .gseo-hero-image-wrapper:hover {
            transform: perspective(1200px) rotateY(0deg);
        }
        
        .gseo-hero-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.6s ease;
        }
        
        .gseo-hero-image-wrapper:hover img {
            transform: scale(1.08);
        }
        
        /* Pure CSS Floating Elements */
        .gseo-hero-float-element {
            position: absolute;
            background: white;
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
            display: flex;
            align-items: center;
            gap: 15px;
            z-index: 2;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
        
        .gseo-hero-float-1 {
            top: -40px;
            right: -30px;
            animation: gseo-float1 10s infinite ease-in-out;
        }
        
        .gseo-hero-float-2 {
            bottom: -30px;
            left: 15%;
            animation: gseo-float2 12s infinite ease-in-out;
        }
        
        @keyframes gseo-float1 {
            0%, 100% { transform: translateY(0) rotate(-2deg); }
            50% { transform: translateY(-20px) rotate(2deg); }
        }
        
        @keyframes gseo-float2 {
            0%, 100% { transform: translateY(0) rotate(2deg); }
            50% { transform: translateY(-25px) rotate(-2deg); }
        }
        
        .gseo-hero-float-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--gseo-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
        }
        
        .gseo-hero-float-text h4 {
            font-size: 18px;
            margin-bottom: 3px;
            color: var(--gseo-dark);
        }
        
        .gseo-hero-float-text p {
            font-size: 13px;
            color: var(--gseo-gray);
        }
        
        /* Pure CSS Hero Features with Staggered Animation */
        .gseo-hero-features {
            display: flex;
            gap: 40px;
            margin-top: 60px;
            opacity: 0;
            animation: gseo-fadeIn 1.2s ease forwards 1.1s;
        }
        
        .gseo-hero-feature {
            display: flex;
            align-items: center;
            gap: 20px;
            opacity: 0;
            animation: gseo-slideUp 0.6s ease forwards;
        }
        
        .gseo-hero-feature:nth-child(1) { animation-delay: 1.2s; }
        .gseo-hero-feature:nth-child(2) { animation-delay: 1.4s; }
        
        @keyframes gseo-slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .gseo-hero-feature-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.95);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gseo-primary);
            font-size: 28px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
            transition: all 0.4s ease;
        }
        
        .gseo-hero-feature:hover .gseo-hero-feature-icon {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(12, 74, 110, 0.25);
        }
        
        .gseo-hero-feature-text h4 {
            font-size: 20px;
            margin-bottom: 6px;
            color: var(--gseo-dark);
        }
        
        .gseo-hero-feature-text p {
            font-size: 15px;
            color: var(--gseo-gray);
        }
        
        /* Pure CSS Glowing Effect */
        .gseo-glow {
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(12, 74, 110, 0.2) 0%, rgba(6, 78, 59, 0.1) 50%, rgba(255, 255, 255, 0) 70%);
            filter: blur(40px);
            z-index: 0;
        }
        
        .gseo-glow-1 {
            top: 20%;
            left: 10%;
            animation: gseo-pulse-glow 8s infinite alternate;
        }
        
        .gseo-glow-2 {
            bottom: 20%;
            right: 10%;
            animation: gseo-pulse-glow 10s infinite alternate-reverse;
        }
        
        @keyframes gseo-pulse-glow {
            0% { opacity: 0.3; transform: scale(1); }
            100% { opacity: 0.7; transform: scale(1.2); }
        }
        
        /* Pure CSS Interactive Hover Effects */
        .gseo-hero-btn::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }
        
        .gseo-hero-btn:active::after {
            width: 300px;
            height: 300px;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .gseo-hero-content {
                grid-template-columns: 1fr;
                gap: 70px;
            }
            
            .gseo-hero-title {
                font-size: 52px;
            }
            
            .gseo-hero-subtitle {
                font-size: 20px;
            }
            
            .gseo-hero-features {
                flex-direction: column;
                gap: 25px;
            }
            
            .gseo-hero-float-1, .gseo-hero-float-2 {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .gseo-hero {
                padding: 120px 0 60px;
                min-height: auto;
            }
            
            .gseo-hero-title {
                font-size: 42px;
            }
            
            .gseo-hero-subtitle {
                font-size: 18px;
            }
            
            .gseo-hero-buttons {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }
            
            .gseo-hero-btn {
                width: 100%;
                justify-content: center;
            }
        }
        
        @media (max-width: 576px) {
            .gseo-hero {
                padding: 100px 0 50px;
            }
            
            .gseo-hero-title {
                font-size: 36px;
            }
            
            .gseo-hero-subtitle {
                font-size: 16px;
            }
            
            .gseo-hero-btn {
                padding: 16px 32px;
                font-size: 16px;
            }
        }
        
        /*count of site */
        
    
    .gseo-sites-section {
        padding: 100px 0;
        background: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 100%);
        position: relative;
        overflow: hidden;
    }
    
    .gseo-sites-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230c4a6e' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        opacity: 0.7;
        z-index: 0;
    }
    

    
    .gseo-sites-header {
        text-align: center;
        margin-bottom: 60px;
    }
    
    .gseo-sites-title {
        font-size: 42px;
        font-weight: 700;
        color: var(--gseo-dark);
        position: relative;
        display: inline-block;
        margin-bottom: 20px;
    }
    
    .gseo-sites-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: var(--gseo-gradient);
        border-radius: 2px;
    }
    
    .gseo-sites-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .gseo-site-card {
        background: white;
        border-radius: 20px;
        box-shadow: var(--gseo-shadow-lg);
        overflow: hidden;
        transition: all 0.4s ease;
        position: relative;
        height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }
    
    .gseo-site-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--gseo-gradient);
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: 0;
    }
    
    .gseo-site-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
    
    .gseo-site-card:hover::before {
        opacity: 0.1;
    }
    
    .gseo-site-card-content {
        position: relative;
        z-index: 1;
        text-align: center;
        padding: 20px;
    }
    
    .gseo-site-count {
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 10px;
        color: var(--gseo-dark);
        transition: color 0.3s ease;
    }
    
    .gseo-site-card:hover .gseo-site-count {
        color: white;
    }
    
    .gseo-site-category {
        font-size: 18px;
        font-weight: 600;
        color: var(--gseo-gray);
        transition: color 0.3s ease;
    }
    
    .gseo-site-card:hover .gseo-site-category {
        color: white;
    }
    
    /* Category-specific colors */
    .gseo-site-card-general {
        border-top: 5px solid #4f46e5;
    }
    
    .gseo-site-card-tech {
        border-top: 5px solid #0ea5e9;
    }
    
    .gseo-site-card-beauty {
        border-top: 5px solid #ec4899;
    }
    
    .gseo-site-card-ecommerce {
        border-top: 5px solid #8b5cf6;
    }
    
    .gseo-site-card-marketing {
        border-top: 5px solid #10b981;
    }
    
    .gseo-site-card-education {
        border-top: 5px solid #f59e0b;
    }
    
    .gseo-site-card-travel {
        border-top: 5px solid #ef4444;
    }
    
    .gseo-sites-button-container {
        text-align: center;
        margin-top: 40px;
    }
    
    .gseo-sites-button {
        display: inline-block;
        padding: 18px 40px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 17px;
        text-decoration: none;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        background: var(--gseo-gradient);
        color: #ffffff;
        box-shadow: 0 6px 20px rgba(12, 74, 110, 0.4);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    }
    
    .gseo-sites-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.3);
        transition: left 0.6s ease;
    }
    
    .gseo-sites-button:hover::before {
        left: 100%;
    }
    
    .gseo-sites-button:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(12, 74, 110, 0.5);
        color: #ffffff;
    }
    
    /* Responsive Styles */
    @media (max-width: 992px) {
        .gseo-sites-grid {
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }
        
        .gseo-site-card {
            height: 180px;
        }
        
        .gseo-site-count {
            font-size: 40px;
        }
        
        .gseo-site-category {
            font-size: 16px;
        }
    }
    
    @media (max-width: 768px) {
        .gseo-sites-section {
            padding: 80px 0;
        }
        
        .gseo-sites-title {
            font-size: 36px;
        }
        
        .gseo-sites-grid {
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 15px;
        }
        
        .gseo-site-card {
            height: 160px;
        }
        
        .gseo-site-count {
            font-size: 36px;
        }
        
        .gseo-site-category {
            font-size: 15px;
        }
        
        .gseo-sites-button {
            padding: 16px 32px;
            font-size: 16px;
        }
    }
    
    @media (max-width: 576px) {
        .gseo-sites-section {
            padding: 60px 0;
        }
        
        .gseo-sites-title {
            font-size: 30px;
        }
        
        .gseo-sites-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        
        .gseo-site-card {
            height: 140px;
        }
        
        .gseo-site-count {
            font-size: 32px;
        }
        
        .gseo-site-category {
            font-size: 14px;
        }
        
        .gseo-sites-button {
            width: 100%;
            padding: 14px 28px;
            font-size: 15px;
        }
    }
         /*service */
         

    
    .gseo-services-section {
        padding: 100px 0;
        background: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 100%);
        position: relative;
        overflow: hidden;
    }
    
    .gseo-services-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230c4a6e' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        opacity: 0.7;
        z-index: 0;
    }
    

    
    .gseo-services-header {
        text-align: center;
        margin-bottom: 60px;
    }
    
    .gseo-services-title {
        font-size: 42px;
        font-weight: 700;
        color: var(--gseo-dark);
        position: relative;
        display: inline-block;
        margin-bottom: 20px;
    }
    
    .gseo-services-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: var(--gseo-gradient);
        border-radius: 2px;
    }
    
    .gseo-services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .gseo-service-card {
        background: white;
        border-radius: 20px;
        box-shadow: var(--gseo-shadow-lg);
        overflow: hidden;
        transition: all 0.4s ease;
        position: relative;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .gseo-service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 8px;
        z-index: 1;
    }
    
    .gseo-service-card-premium::before {
        background: linear-gradient(90deg, #4f46e5, #8b5cf6);
    }
    
    .gseo-service-card-free::before {
        background: linear-gradient(90deg, #10b981, #34d399);
    }
    
    .gseo-service-card-backlink::before {
        background: linear-gradient(90deg, #f59e0b, #fbbf24);
    }
    
    .gseo-service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
    
    .gseo-service-card-content {
        padding: 40px 30px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
    
    .gseo-service-card-title {
        font-size: 20px;
        font-weight: 700;
        text-transform: uppercase;
        text-align: center;
        margin-bottom: 15px;
        color: var(--gseo-dark);
    }
    
    .gseo-service-card-separator {
        width: 50px;
        height: 3px;
        background: var(--gseo-gradient);
        margin: 0 auto 30px;
        border-radius: 2px;
    }
    
    .gseo-service-list {
        list-style: none;
        padding: 0;
        margin: 0 0 30px;
        flex-grow: 1;
    }
    
    .gseo-service-list li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 15px;
        color: var(--gseo-gray);
        font-size: 15px;
        line-height: 1.5;
    }
    
    .gseo-service-list li i {
        color: var(--gseo-primary);
        margin-right: 12px;
        margin-top: 3px;
        font-size: 14px;
        flex-shrink: 0;
    }
    
    .gseo-service-list li span {
        flex-grow: 1;
    }
    
    .gseo-service-button {
        display: inline-block;
        padding: 14px 24px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        text-align: center;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        margin-top: auto;
        width: 100%;
        border: 2px solid var(--gseo-primary);
        color: var(--gseo-primary);
        background: transparent;
    }
    
    .gseo-service-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: var(--gseo-gradient);
        transition: left 0.6s ease;
        z-index: -1;
    }
    
    .gseo-service-button:hover::before {
        left: 0;
    }
    
    .gseo-service-button:hover {
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(12, 74, 110, 0.3);
    }
    
    /* Enhanced Responsive Styles */
    
    /* Large Desktop (1200px and up) */
    @media (min-width: 1200px) {
        .gseo-services-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }
        
        .gseo-service-card-content {
            padding: 45px 35px;
        }
        
        .gseo-service-card-title {
            font-size: 22px;
        }
        
        .gseo-service-list li {
            font-size: 16px;
            margin-bottom: 18px;
        }
        
        .gseo-service-list li i {
            font-size: 15px;
            margin-right: 15px;
        }
        
        .gseo-service-button {
            padding: 16px 28px;
            font-size: 16px;
        }
    }
    
    /* Desktop (992px to 1199px) */
    @media (min-width: 992px) and (max-width: 1199px) {
        .gseo-services-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .gseo-service-card-content {
            padding: 40px 30px;
        }
        
        .gseo-service-card-title {
            font-size: 20px;
        }
        
        .gseo-service-list li {
            font-size: 15px;
            margin-bottom: 15px;
        }
        
        .gseo-service-button {
            padding: 14px 24px;
            font-size: 15px;
        }
    }
    
    /* Tablet (768px to 991px) */
    @media (min-width: 768px) and (max-width: 991px) {
        .gseo-services-section {
            padding: 80px 0;
        }
        
        .gseo-services-title {
            font-size: 38px;
        }
        
        .gseo-services-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }
        
        .gseo-service-card-content {
            padding: 35px 25px;
        }
        
        .gseo-service-card-title {
            font-size: 18px;
        }
        
        .gseo-service-list li {
            font-size: 14px;
            margin-bottom: 12px;
        }
        
        .gseo-service-list li i {
            font-size: 13px;
            margin-right: 10px;
        }
        
        .gseo-service-button {
            padding: 13px 22px;
            font-size: 14px;
        }
        
        /* Center the last card in tablet view */
        .gseo-service-card:nth-child(3) {
            grid-column: 1 / -1;
            max-width: 500px;
            margin: 0 auto;
        }
    }
    
    /* Mobile (576px to 767px) */
    @media (min-width: 576px) and (max-width: 767px) {
        .gseo-services-section {
            padding: 70px 0;
        }
        
        .gseo-services-title {
            font-size: 34px;
        }
        
        .gseo-services-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .gseo-service-card-content {
            padding: 30px 20px;
        }
        
        .gseo-service-card-title {
            font-size: 17px;
        }
        
        .gseo-service-list li {
            font-size: 14px;
            margin-bottom: 12px;
        }
        
        .gseo-service-list li i {
            font-size: 12px;
            margin-right: 10px;
        }
        
        .gseo-service-button {
            padding: 12px 20px;
            font-size: 14px;
        }
    }
    
    /* Small Mobile (575px and below) */
    @media (max-width: 575px) {
        .gseo-services-section {
            padding: 60px 0;
        }
        
        .gseo-services-title {
            font-size: 28px;
        }
        
        .gseo-services-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .gseo-service-card-content {
            padding: 25px 15px;
        }
        
        .gseo-service-card-title {
            font-size: 16px;
            margin-bottom: 12px;
        }
        
        .gseo-service-card-separator {
            width: 40px;
            height: 2px;
            margin: 0 auto 20px;
        }
        
        .gseo-service-list {
            margin-bottom: 20px;
        }
        
        .gseo-service-list li {
            font-size: 13px;
            margin-bottom: 10px;
            line-height: 1.4;
        }
        
        .gseo-service-list li i {
            font-size: 11px;
            margin-right: 8px;
            margin-top: 2px;
        }
        
        .gseo-service-button {
            padding: 12px 18px;
            font-size: 13px;
        }
    }
    
    /* Extra Small Mobile (375px and below) */
    @media (max-width: 375px) {
        .gseo-services-section {
            padding: 50px 0;
        }
        
        .gseo-services-title {
            font-size: 24px;
        }
        
        .gseo-service-card-content {
            padding: 20px 12px;
        }
        
        .gseo-service-card-title {
            font-size: 15px;
        }
        
        .gseo-service-list li {
            font-size: 12px;
            margin-bottom: 8px;
        }
        
        .gseo-service-list li i {
            font-size: 10px;
            margin-right: 6px;
        }
        
        .gseo-service-button {
            padding: 10px 16px;
            font-size: 12px;
        }
    }
    
    /*advertisement */
    

    
    .gseo-promotion-section {
        padding: 100px 0;
        background: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 100%);
        position: relative;
        overflow: hidden;
    }
    
    .gseo-promotion-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230c4a6e' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        opacity: 0.7;
        z-index: 0;
    }
    

    
    .gseo-promotion-header {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .gseo-promotion-title {
        font-size: 42px;
        font-weight: 700;
        color: var(--gseo-dark);
        position: relative;
        display: inline-block;
        margin-bottom: 20px;
    }
    
    .gseo-promotion-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: var(--gseo-gradient);
        border-radius: 2px;
    }
    
    .gseo-promotion-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .gseo-promotion-card {
        background: white;
        border-radius: 20px;
        box-shadow: var(--gseo-shadow-lg);
        overflow: hidden;
        transition: all 0.4s ease;
        position: relative;
    }
    
    .gseo-promotion-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 6px;
        background: var(--gseo-gradient);
        z-index: 1;
    }
    
    .gseo-promotion-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }
    
    .gseo-promotion-card-content {
        padding: 30px;
    }
    
    .gseo-promotion-table {
        margin-bottom: 25px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch; /* For smooth scrolling on iOS */
    }
    
    .gseo-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 15px;
        min-width: 400px; /* Ensure table doesn't get too small */
    }
    
    .gseo-table th {
        background-color: rgba(12, 74, 110, 0.1);
        color: var(--gseo-dark);
        font-weight: 600;
        text-align: left;
        padding: 12px 15px;
        border-bottom: 2px solid var(--gseo-border);
        white-space: nowrap; /* Prevent text wrapping in headers */
    }
    
    .gseo-table td {
        padding: 12px 15px;
        border-bottom: 1px solid var(--gseo-border);
        color: var(--gseo-gray);
        white-space: nowrap; /* Prevent text wrapping in cells */
    }
    
    .gseo-table tr:last-child td {
        border-bottom: none;
    }
    
    .gseo-promotion-button {
        display: inline-block;
        padding: 12px 24px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        margin-bottom: 20px;
        border: 2px solid var(--gseo-primary);
        color: var(--gseo-primary);
        background: transparent;
        text-align: center;
    }
    
    .gseo-promotion-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: var(--gseo-gradient);
        transition: left 0.6s ease;
        z-index: -1;
    }
    
    .gseo-promotion-button:hover::before {
        left: 0;
    }
    
    .gseo-promotion-button:hover {
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 8px 15px rgba(12, 74, 110, 0.3);
    }
    
    .gseo-promotion-contact {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        color: var(--gseo-gray);
        font-size: 14px;
    }
    
    .gseo-promotion-contact i {
        color: var(--gseo-primary);
        margin-right: 8px;
        flex-shrink: 0; /* Prevent icon from shrinking */
    }
    
    .gseo-promotion-footer {
        text-align: center;
        padding: 20px;
        background: rgba(255, 255, 255, 0.7);
        border-radius: 15px;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    .gseo-promotion-footer-text {
        font-size: 18px;
        font-weight: 600;
        color: var(--gseo-dark);
        margin: 0;
    }
    
    /* Enhanced Responsive Styles */
    
    /* Large Desktop (1200px and up) */
    @media (min-width: 1200px) {
        .gseo-promotion-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }
        
        .gseo-promotion-card-content {
            padding: 35px;
        }
        
        .gseo-table {
            font-size: 16px;
            min-width: 450px;
        }
        
        .gseo-table th, .gseo-table td {
            padding: 15px 18px;
        }
        
        .gseo-promotion-button {
            padding: 14px 28px;
            font-size: 16px;
        }
        
        .gseo-promotion-contact {
            font-size: 15px;
        }
        
        .gseo-promotion-footer-text {
            font-size: 20px;
        }
    }
    
    /* Desktop (992px to 1199px) */
    @media (min-width: 992px) and (max-width: 1199px) {
        .gseo-promotion-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        
        .gseo-promotion-card-content {
            padding: 30px;
        }
        
        .gseo-table {
            font-size: 15px;
            min-width: 420px;
        }
        
        .gseo-promotion-button {
            padding: 12px 24px;
            font-size: 15px;
        }
        
        .gseo-promotion-footer-text {
            font-size: 18px;
        }
    }
    
    /* Tablet (768px to 991px) */
    @media (min-width: 768px) and (max-width: 991px) {
        .gseo-promotion-section {
            padding: 80px 0;
        }
        
        .gseo-promotion-title {
            font-size: 36px;
        }
        
        .gseo-promotion-grid {
            grid-template-columns: 1fr;
            gap: 25px;
        }
        
        .gseo-promotion-card-content {
            padding: 25px;
        }
        
        .gseo-table {
            font-size: 14px;
            min-width: 380px;
        }
        
        .gseo-table th, .gseo-table td {
            padding: 10px 12px;
        }
        
        .gseo-promotion-button {
            padding: 11px 22px;
            font-size: 14px;
        }
        
        .gseo-promotion-contact {
            font-size: 13px;
        }
        
        .gseo-promotion-footer-text {
            font-size: 16px;
        }
    }
    
    /* Mobile (576px to 767px) */
    @media (min-width: 576px) and (max-width: 767px) {
        .gseo-promotion-section {
            padding: 70px 0;
        }
        
        .gseo-promotion-title {
            font-size: 32px;
        }
        
        .gseo-promotion-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .gseo-promotion-card-content {
            padding: 20px;
        }
        
        .gseo-table {
            font-size: 13px;
            min-width: 350px;
        }
        
        .gseo-table th, .gseo-table td {
            padding: 8px 10px;
        }
        
        .gseo-promotion-button {
            padding: 10px 20px;
            font-size: 13px;
            width: 100%;
            max-width: 300px; /* Limit button width on mobile */
            margin: 0 auto 20px;
            display: block;
        }
        
        .gseo-promotion-contact {
            font-size: 12px;
            justify-content: center;
            margin-top: 15px;
        }
        
        .gseo-promotion-footer-text {
            font-size: 15px;
        }
    }
    
    /* Small Mobile (575px and below) */
    @media (max-width: 575px) {
        .gseo-promotion-section {
            padding: 60px 0;
        }
        
        .gseo-promotion-title {
            font-size: 28px;
        }
        
        .gseo-promotion-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .gseo-promotion-card-content {
            padding: 18px 15px;
        }
        
        .gseo-table {
            font-size: 12px;
            min-width: 320px;
        }
        
        .gseo-table th, .gseo-table td {
            padding: 8px;
        }
        
        .gseo-promotion-button {
            padding: 10px 18px;
            font-size: 12px;
            width: 100%;
            max-width: 280px;
            margin: 0 auto 20px;
            display: block;
        }
        
        .gseo-promotion-contact {
            font-size: 11px;
            justify-content: center;
            margin-top: 15px;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .gseo-promotion-contact i {
            margin-right: 0;
            margin-bottom: 5px;
        }
        
        .gseo-promotion-footer-text {
            font-size: 14px;
            padding: 15px;
        }
    }
    
    /* Extra Small Mobile (375px and below) */
    @media (max-width: 375px) {
        .gseo-promotion-section {
            padding: 50px 0;
        }
        
        .gseo-promotion-title {
            font-size: 24px;
        }
        
        .gseo-promotion-card-content {
            padding: 15px 12px;
        }
        
        .gseo-table {
            font-size: 11px;
            min-width: 280px;
        }
        
        .gseo-table th, .gseo-table td {
            padding: 6px;
        }
        
        .gseo-promotion-button {
            padding: 9px 16px;
            font-size: 11px;
            max-width: 250px;
        }
        
        .gseo-promotion-footer-text {
            font-size: 13px;
            padding: 12px;
        }
    }
    
    /* Ultra Small Mobile (320px and below) */
    @media (max-width: 320px) {
        .gseo-promotion-section {
            padding: 40px 0;
        }
        
        .gseo-promotion-title {
            font-size: 22px;
        }
        
        .gseo-promotion-card-content {
            padding: 12px 10px;
        }
        
        .gseo-table {
            font-size: 10px;
            min-width: 260px;
        }
        
        .gseo-table th, .gseo-table td {
            padding: 5px;
        }
        
        .gseo-promotion-button {
            padding: 8px 14px;
            font-size: 10px;
            max-width: 220px;
        }
        
        .gseo-promotion-footer-text {
            font-size: 12px;
            padding: 10px;
        }
    }

/*srerhje */




    
    .gseo-packages-section {
        padding: 100px 0;
        background: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 100%);
        position: relative;
        overflow: hidden;
    }
    
    .gseo-packages-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230c4a6e' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        opacity: 0.7;
        z-index: 0;
    }
    

    
    .gseo-packages-header {
        text-align: center;
        margin-bottom: 60px;
    }
    
    .gseo-packages-title {
        font-size: 42px;
        font-weight: 700;
        color: var(--gseo-dark);
        position: relative;
        display: inline-block;
        margin-bottom: 20px;
    }
    
    .gseo-packages-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: var(--gseo-gradient);
        border-radius: 2px;
    }
    
    .gseo-packages-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
    
    .gseo-package-card {
        background: white;
        border-radius: 20px;
        box-shadow: var(--gseo-shadow-lg);
        overflow: hidden;
        transition: all 0.4s ease;
        position: relative;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .gseo-package-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 6px;
        z-index: 1;
    }
    
    .gseo-package-card-basic::before {
        background: linear-gradient(90deg, #4f46e5, #8b5cf6);
    }
    
    .gseo-package-card-standard::before {
        background: linear-gradient(90deg, #0ea5e9, #38bdf8);
    }
    
    .gseo-package-card-premium::before {
        background: linear-gradient(90deg, #10b981, #34d399);
    }
    
    .gseo-package-card-deluxe::before {
        background: linear-gradient(90deg, #f59e0b, #fbbf24);
    }
    
    .gseo-package-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
    
    .gseo-package-card-content {
        padding: 30px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
    
    .gseo-package-card-header {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .gseo-package-name {
        font-size: 22px;
        font-weight: 700;
        color: var(--gseo-dark);
        margin-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .gseo-package-price {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .gseo-package-amount {
        font-size: 18px;
        font-weight: 600;
        color: var(--gseo-gray);
        margin-bottom: 5px;
    }
    
    .gseo-package-cost {
        font-size: 24px;
        font-weight: 700;
        color: var(--gseo-primary);
    }
    
    .gseo-package-divider {
        width: 50px;
        height: 3px;
        background: var(--gseo-gradient);
        margin: 0 auto 25px;
        border-radius: 2px;
    }
    
    .gseo-package-features {
        list-style: none;
        padding: 0;
        margin: 0 0 30px;
        flex-grow: 1;
    }
    
    .gseo-feature-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 15px;
        color: var(--gseo-gray);
        font-size: 15px;
        line-height: 1.5;
    }
    
    .gseo-feature-item.gseo-feature-disabled {
        color: #94a3b8;
    }
    
    .gseo-feature-icon {
        color: var(--gseo-primary);
        margin-right: 12px;
        margin-top: 3px;
        font-size: 14px;
        flex-shrink: 0;
    }
    
    .gseo-feature-item.gseo-feature-disabled .gseo-feature-icon {
        color: #94a3b8;
    }
    
    .gseo-package-button {
        display: inline-block;
        padding: 14px 24px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        text-align: center;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        margin-top: auto;
        width: 100%;
        border: 2px solid var(--gseo-primary);
        color: var(--gseo-primary);
        background: transparent;
    }
    
    .gseo-package-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: var(--gseo-gradient);
        transition: left 0.6s ease;
        z-index: -1;
    }
    
    .gseo-package-button:hover::before {
        left: 0;
    }
    
    .gseo-package-button:hover {
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(12, 74, 110, 0.3);
    }
    
    /* Responsive Styles */
    
    /* Large Desktop (1200px and up) */
    @media (min-width: 1200px) {
        .gseo-packages-grid {
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }
        
        .gseo-package-card-content {
            padding: 35px;
        }
        
        .gseo-package-name {
            font-size: 24px;
        }
        
        .gseo-package-amount {
            font-size: 20px;
        }
        
        .gseo-package-cost {
            font-size: 26px;
        }
        
        .gseo-feature-item {
            font-size: 16px;
            margin-bottom: 18px;
        }
        
        .gseo-package-button {
            padding: 16px 28px;
            font-size: 16px;
        }
    }
    
    /* Desktop (992px to 1199px) */
    @media (min-width: 992px) and (max-width: 1199px) {
        .gseo-packages-grid {
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        
        .gseo-package-card-content {
            padding: 30px;
        }
        
        .gseo-package-name {
            font-size: 22px;
        }
        
        .gseo-package-amount {
            font-size: 18px;
        }
        
        .gseo-package-cost {
            font-size: 24px;
        }
        
        .gseo-feature-item {
            font-size: 15px;
            margin-bottom: 15px;
        }
        
        .gseo-package-button {
            padding: 14px 24px;
            font-size: 15px;
        }
    }
    
    /* Tablet (768px to 991px) */
    @media (min-width: 768px) and (max-width: 991px) {
        .gseo-packages-section {
            padding: 80px 0;
        }
        
        .gseo-packages-title {
            font-size: 38px;
        }
        
        .gseo-packages-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }
        
        .gseo-package-card-content {
            padding: 25px;
        }
        
        .gseo-package-name {
            font-size: 20px;
        }
        
        .gseo-package-amount {
            font-size: 17px;
        }
        
        .gseo-package-cost {
            font-size: 22px;
        }
        
        .gseo-feature-item {
            font-size: 14px;
            margin-bottom: 12px;
        }
        
        .gseo-package-button {
            padding: 13px 22px;
            font-size: 14px;
        }
    }
    
    /* Mobile (576px to 767px) */
    @media (min-width: 576px) and (max-width: 767px) {
        .gseo-packages-section {
            padding: 70px 0;
        }
        
        .gseo-packages-title {
            font-size: 34px;
        }
        
        .gseo-packages-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .gseo-package-card-content {
            padding: 20px;
        }
        
        .gseo-package-name {
            font-size: 18px;
        }
        
        .gseo-package-amount {
            font-size: 16px;
        }
        
        .gseo-package-cost {
            font-size: 20px;
        }
        
        .gseo-feature-item {
            font-size: 13px;
            margin-bottom: 10px;
        }
        
        .gseo-package-button {
            padding: 12px 20px;
            font-size: 13px;
        }
    }
    
    /* Small Mobile (575px and below) */
    @media (max-width: 575px) {
        .gseo-packages-section {
            padding: 60px 0;
        }
        
        .gseo-packages-title {
            font-size: 30px;
        }
        
        .gseo-packages-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .gseo-package-card-content {
            padding: 25px 20px;
        }
        
        .gseo-package-name {
            font-size: 20px;
        }
        
        .gseo-package-amount {
            font-size: 16px;
        }
        
        .gseo-package-cost {
            font-size: 22px;
        }
        
        .gseo-feature-item {
            font-size: 14px;
            margin-bottom: 12px;
        }
        
        .gseo-package-button {
            padding: 14px 20px;
            font-size: 14px;
        }
    }
    
    /* Extra Small Mobile (375px and below) */
    @media (max-width: 375px) {
        .gseo-packages-section {
            padding: 50px 0;
        }
        
        .gseo-packages-title {
            font-size: 26px;
        }
        
        .gseo-package-card-content {
            padding: 20px 15px;
        }
        
        .gseo-package-name {
            font-size: 18px;
        }
        
        .gseo-package-amount {
            font-size: 15px;
        }
        
        .gseo-package-cost {
            font-size: 20px;
        }
        
        .gseo-feature-item {
            font-size: 13px;
            margin-bottom: 10px;
        }
        
        .gseo-package-button {
            padding: 12px 18px;
            font-size: 13px;
        }
    }

