/* Reviews Page Styles - Force text visibility */
body .service-content,
body .service-content *,
.service-content,
.service-content * {
    color: #e5e7eb !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.freelance-profiles {
    margin-top: 2rem;
}

.profile-item {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-item h3 {
    color: #ffffff !important;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.profile-item h3 a {
    color: #8b5cf6 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.profile-item h3 a:hover {
    color: #a78bfa !important;
}

.banner-container {
    text-align: center;
    margin-top: 1rem;
}

.freelance-banner {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.freelance-banner:hover {
    transform: scale(1.02);
}

.testimonials-section {
    margin-top: 4rem;
}

.testimonials-section h2 {
    text-align: center;
    color: #ffffff !important;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.1);
}

.testimonial-photo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.testimonial-photo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #8b5cf6;
}

.testimonial-content blockquote {
    font-style: italic;
    color: #e5e7eb !important;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.testimonial-content cite {
    color: #ffffff !important;
    font-style: normal;
}

.client-company {
    color: #8b5cf6 !important;
    font-size: 0.9rem;
}

/* Ensure text visibility */
body .service-content p,
.service-content p {
    color: #e5e7eb !important;
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.services-section .service-content {
    color: #e5e7eb !important;
}

.services-section .service-content h2 {
    color: #ffffff !important;
}

.services-section .service-content h3 {
    color: #8b5cf6 !important;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-item {
        padding: 1.5rem;
    }
}