/* Portfolio Section Styles */
.portfolio-sec {
    background: linear-gradient(135deg, var(--gseo-light) 0%, var(--gseo-border) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.portfolio-sec::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.03'%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.5;
    z-index: 0;
}

.portfolio-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gseo-primary);
    margin-bottom: 3rem;
    position: relative;
    text-align: center;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.portfolio-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--gseo-gradient);
    border-radius: 10px;
}

.portfolio-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.portfolio-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.portfolio-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--gseo-shadow-lg);
    transition: all 0.4s ease;
    width: 300px;
    position: relative;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.portfolio-card:nth-child(1) { animation-delay: 0.1s; }
.portfolio-card:nth-child(2) { animation-delay: 0.2s; }
.portfolio-card:nth-child(3) { animation-delay: 0.3s; }
.portfolio-card:nth-child(4) { animation-delay: 0.4s; }
.portfolio-card:nth-child(5) { animation-delay: 0.5s; }
.portfolio-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.portfolio-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-img {
    transform: scale(1.1);
}

.portfolio-footer {
    padding: 20px;
    background: white;
    position: relative;
}

.portfolio-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gseo-primary);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.portfolio-card:hover .portfolio-card-title {
    color: var(--gseo-secondary);
}

.portfolio-date {
    font-size: 0.85rem;
    color: var(--gseo-gray);
    display: flex;
    align-items: center;
}

.portfolio-date::before {
    content: '\f017';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 8px;
    color: var(--gseo-primary);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .portfolio-title {
        font-size: 2.5rem;
    }
    
    .portfolio-card {
        width: calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .portfolio-title {
        font-size: 2rem;
    }
    
    .portfolio-card {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 576px) {
    .portfolio-sec {
        padding: 40px 0;
    }
    
    .portfolio-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .portfolio-row {
        gap: 20px;
    }
}

/*about page */



        
        /* About Page Hero Section */
        .gseo-about-hero {
            padding: 80px 0 60px;
            background: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 100%);
            position: relative;
            overflow: hidden;
        }
        
        .gseo-about-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-about-hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .gseo-about-hero-title {
            font-size: 48px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 24px;
            color: var(--gseo-dark);
            position: relative;
            display: inline-block;
        }
        
        .gseo-about-hero-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gseo-gradient);
            border-radius: 2px;
        }
        
        .gseo-about-hero-subtitle {
            font-size: 20px;
            color: var(--gseo-gray);
            margin-bottom: 36px;
            line-height: 1.6;
        }
        
        /* About Story Section */
        .gseo-about-story {
            padding: 80px 0;
            background-color: #fff;
        }
        
        .gseo-section-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--gseo-dark);
            position: relative;
            display: inline-block;
        }
        
        .gseo-section-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--gseo-gradient);
            border-radius: 2px;
        }
        
        .gseo-section-subtitle {
            font-size: 18px;
            color: var(--gseo-gray);
            margin-bottom: 40px;
            max-width: 700px;
        }
        
        .gseo-about-story-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .gseo-about-story-text {
            font-size: 16px;
            line-height: 1.8;
            color: var(--gseo-dark);
        }
        
        .gseo-about-story-text p {
            margin-bottom: 20px;
        }
        
        .gseo-about-story-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--gseo-shadow-lg);
            position: relative;
        }
        
        .gseo-about-story-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .gseo-about-story-image:hover img {
            transform: scale(1.05);
        }
        
        /* Mission & Values Section */
        .gseo-mission-values {
            padding: 80px 0;
            background: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 100%);
            position: relative;
        }
        
        .gseo-mission-values::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-mission-values-content {
            position: relative;
            z-index: 1;
        }
        
        .gseo-mission-values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .gseo-value-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: var(--gseo-shadow);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .gseo-value-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--gseo-shadow-lg);
        }
        
        .gseo-value-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: var(--gseo-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        
        .gseo-value-card:hover .gseo-value-icon {
            transform: scale(1.1);
        }
        
        .gseo-value-title {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--gseo-dark);
        }
        
        .gseo-value-text {
            font-size: 16px;
            color: var(--gseo-gray);
            line-height: 1.6;
            flex-grow: 1;
        }
        
        /* Team Section */
        .gseo-team {
            padding: 80px 0;
            background-color: #fff;
        }
        
        .gseo-team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .gseo-team-member {
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .gseo-team-member:hover {
            transform: translateY(-10px);
        }
        
        .gseo-team-member-image {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 20px;
            border: 5px solid white;
            box-shadow: var(--gseo-shadow-lg);
            position: relative;
        }
        
        .gseo-team-member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gseo-team-member:hover .gseo-team-member-image img {
            transform: scale(1.1);
        }
        
        .gseo-team-member-name {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--gseo-dark);
        }
        
        .gseo-team-member-position {
            font-size: 16px;
            color: var(--gseo-primary);
            margin-bottom: 15px;
            font-weight: 500;
        }
        
        .gseo-team-member-bio {
            font-size: 14px;
            color: var(--gseo-gray);
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .gseo-team-member-social {
            display: flex;
            justify-content: center;
            gap: 10px;
        }
        
        .gseo-team-member-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background-color: rgba(12, 74, 110, 0.1);
            border-radius: 50%;
            color: var(--gseo-primary);
            transition: all 0.3s ease;
        }
        
        .gseo-team-member-social a:hover {
            background-color: var(--gseo-primary);
            color: white;
            transform: translateY(-5px);
        }
        
        /* Milestones Section */
        .gseo-milestones {
            padding: 80px 0;
            background: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 100%);
            position: relative;
        }
        
        .gseo-milestones::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-milestones-content {
            position: relative;
            z-index: 1;
        }
        
        .gseo-milestones-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .gseo-milestone {
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: 15px;
            box-shadow: var(--gseo-shadow);
            transition: all 0.3s ease;
        }
        
        .gseo-milestone:hover {
            transform: translateY(-10px);
            box-shadow: var(--gseo-shadow-lg);
        }
        
        .gseo-milestone-number {
            font-size: 48px;
            font-weight: 700;
            color: var(--gseo-primary);
            margin-bottom: 10px;
            line-height: 1;
        }
        
        .gseo-milestone-text {
            font-size: 16px;
            color: var(--gseo-gray);
            line-height: 1.4;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .gseo-about-story-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .gseo-about-hero-title {
                font-size: 40px;
            }
            
            .gseo-section-title {
                font-size: 32px;
            }
        }
        
        @media (max-width: 768px) {
            .gseo-about-hero {
                padding: 60px 0 40px;
            }
            
            .gseo-about-hero-title {
                font-size: 36px;
            }
            
            .gseo-section-title {
                font-size: 28px;
            }
            
            .gseo-milestone-number {
                font-size: 36px;
            }
        }
        
        @media (max-width: 576px) {
            .gseo-about-hero {
                padding: 50px 0 30px;
            }
            
            .gseo-about-hero-title {
                font-size: 30px;
            }
            
            .gseo-section-title {
                font-size: 24px;
            }
        }
  /*write for us  */

        
        /* Write For Us Hero Section */
        .gseo-write-hero {
            padding: 80px 0 60px;
            background: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 100%);
            position: relative;
            overflow: hidden;
        }
        
        .gseo-write-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-write-hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .gseo-write-hero-title {
            font-size: 48px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 24px;
            color: var(--gseo-dark);
            position: relative;
            display: inline-block;
        }
        
        .gseo-write-hero-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gseo-gradient);
            border-radius: 2px;
        }
        
        .gseo-write-hero-subtitle {
            font-size: 20px;
            color: var(--gseo-gray);
            margin-bottom: 36px;
            line-height: 1.6;
        }
        
        /* Guidelines Section */
        .gseo-guidelines {
            padding: 80px 0;
            background-color: #fff;
        }
        
        .gseo-section-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--gseo-dark);
            position: relative;
            display: inline-block;
        }
        
        .gseo-section-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--gseo-gradient);
            border-radius: 2px;
        }
        
        .gseo-section-subtitle {
            font-size: 18px;
            color: var(--gseo-gray);
            margin-bottom: 40px;
            max-width: 700px;
        }
        
        .gseo-guidelines-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }
        
        .gseo-guidelines-list {
            list-style: none;
        }
        
        .gseo-guidelines-list li {
            margin-bottom: 20px;
            padding-left: 40px;
            position: relative;
            font-size: 16px;
            line-height: 1.6;
            color: var(--gseo-dark);
        }
        
        .gseo-guidelines-list li::before {
            content: '\f058';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 0;
            color: var(--gseo-primary);
            font-size: 20px;
        }
        
        .gseo-guidelines-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--gseo-shadow-lg);
            position: relative;
        }
        
        .gseo-guidelines-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .gseo-guidelines-image:hover img {
            transform: scale(1.05);
        }
        
        /* Benefits Section */
        .gseo-benefits {
            padding: 80px 0;
            background: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 100%);
            position: relative;
        }
        
        .gseo-benefits::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-benefits-content {
            position: relative;
            z-index: 1;
        }
        
        .gseo-benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .gseo-benefit-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: var(--gseo-shadow);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .gseo-benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--gseo-shadow-lg);
        }
        
        .gseo-benefit-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: var(--gseo-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        
        .gseo-benefit-card:hover .gseo-benefit-icon {
            transform: scale(1.1);
        }
        
        .gseo-benefit-title {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--gseo-dark);
        }
        
        .gseo-benefit-text {
            font-size: 16px;
            color: var(--gseo-gray);
            line-height: 1.6;
            flex-grow: 1;
        }
        
        /* Topics Section */
        .gseo-topics {
            padding: 80px 0;
            background-color: #fff;
        }
        
        .gseo-topics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }
        
        .gseo-topic-tag {
            background: rgba(12, 74, 110, 0.1);
            color: var(--gseo-primary);
            padding: 12px 20px;
            border-radius: 50px;
            font-weight: 500;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .gseo-topic-tag:hover {
            background: var(--gseo-primary);
            color: white;
            transform: translateY(-5px);
            border-color: var(--gseo-primary);
        }
        
        /* Submission Process Section */
        .gseo-submission {
            padding: 80px 0;
            background: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 100%);
            position: relative;
        }
        
        .gseo-submission::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-submission-content {
            position: relative;
            z-index: 1;
        }
        
        .gseo-submission-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .gseo-step {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: var(--gseo-shadow);
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .gseo-step:hover {
            transform: translateY(-10px);
            box-shadow: var(--gseo-shadow-lg);
        }
        
        .gseo-step-number {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            background: var(--gseo-gradient);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 18px;
        }
        
        .gseo-step-title {
            font-size: 20px;
            font-weight: 600;
            margin: 15px 0 10px;
            color: var(--gseo-dark);
        }
        
        .gseo-step-text {
            font-size: 16px;
            color: var(--gseo-gray);
            line-height: 1.6;
        }
        
        /* Contact Section */
        .gseo-contact {
            padding: 80px 0;
            background-color: #fff;
        }
        
        .gseo-contact-container {
            max-width: 800px;
            margin: 0 auto;
            background: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 100%);
            border-radius: 20px;
            padding: 50px;
            box-shadow: var(--gseo-shadow-lg);
            text-align: center;
        }
        
        .gseo-contact-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--gseo-dark);
        }
        
        .gseo-contact-subtitle {
            font-size: 18px;
            color: var(--gseo-gray);
            margin-bottom: 40px;
            line-height: 1.6;
        }
        
        .gseo-contact-info {
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin-top: 40px;
        }
        
        .gseo-contact-item {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            background: white;
            padding: 20px;
            border-radius: 15px;
            box-shadow: var(--gseo-shadow);
            transition: all 0.3s ease;
        }
        
        .gseo-contact-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--gseo-shadow-lg);
        }
        
        .gseo-contact-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--gseo-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
        }
        
        .gseo-contact-text {
            text-align: left;
        }
        
        .gseo-contact-label {
            font-size: 14px;
            color: var(--gseo-gray);
            margin-bottom: 5px;
        }
        
        .gseo-contact-value {
            font-size: 18px;
            font-weight: 600;
            color: var(--gseo-dark);
        }
        
        .gseo-contact-note {
            margin-top: 30px;
            font-size: 16px;
            color: var(--gseo-gray);
            font-style: italic;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .gseo-guidelines-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .gseo-write-hero-title {
                font-size: 40px;
            }
            
            .gseo-section-title {
                font-size: 32px;
            }
        }
        
        @media (max-width: 768px) {
            .gseo-write-hero {
                padding: 60px 0 40px;
            }
            
            .gseo-write-hero-title {
                font-size: 36px;
            }
            
            .gseo-section-title {
                font-size: 28px;
            }
            
            .gseo-contact-container {
                padding: 30px 20px;
            }
            
            .gseo-contact-item {
                flex-direction: column;
                text-align: center;
            }
            
            .gseo-contact-text {
                text-align: center;
            }
        }
        
        @media (max-width: 576px) {
            .gseo-write-hero {
                padding: 50px 0 30px;
            }
            
            .gseo-write-hero-title {
                font-size: 30px;
            }
            
            .gseo-section-title {
                font-size: 24px;
            }
            
            .gseo-benefits-grid,
            .gseo-topics-grid,
            .gseo-submission-steps {
                grid-template-columns: 1fr;
            }
            
            .gseo-contact-title {
                font-size: 28px;
            }
        }
    
