/* SEO Internal Linking Section */
.related-services {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.related-services h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 700;
}

.internal-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.cta-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #f7b731 0%, #f39c12 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(247, 183, 49, 0.3);
}

.cta-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(247, 183, 49, 0.5);
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.internal-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
    max-width: 800px;
    margin: 2rem auto 0;
}

.internal-description strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Trust Badges Section */
.trust-section {
    background: rgba(247, 183, 49, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1rem;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.trust-badge:hover {
    transform: translateX(5px);
}

.trust-badge i {
    color: #f7b731;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.trust-badge span {
    font-weight: 500;
    color: #2c3e50;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .related-services {
        padding: 60px 0;
    }
    
    .related-services h2 {
        font-size: 2rem;
    }
    
    .internal-links {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .cta-link {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .internal-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .trust-badges {
        gap: 0.75rem;
    }
    
    .trust-badge {
        padding: 0.5rem;
    }
} 