.gh-services {
    padding: 4rem 0;
}

.gh-services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gh-services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.gh-services-subtitle {
    font-size: 1.5rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Latest Post Section Styles */
.gh-latest-post {
    padding: 4rem 0;
}

.gh-latest-post-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gh-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gh-service-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gh-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.gh-service-icon {
    width: 48px;
    height: 48px;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.gh-service-icon svg {
    width: 100%;
    height: 100%;
}

.gh-service-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.gh-service-content p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.gh-service-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}

.gh-service-link:hover {
    color: #1d4ed8;
}

@media (max-width: 768px) {
    .gh-services {
        padding: 3rem 0;
    }

    .gh-services-title {
        font-size: 2rem;
    }

    .gh-services-grid {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
    }

    .gh-service-card {
        padding: 1.5rem;
    }
} 