/* Section Styles */
.section {
    position: relative;
}

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

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-subtitle {
    color: var(--secondary-color);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1.2rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

/* Features Section */
.features-section {
    background-color: var(--card-bg);
}

/* Services Section */
.services-section {
    background: var(--background-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.process-description {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    background: rgba(var(--primary-rgb), 0.05);
    border-radius: 1rem;
    border: 1px dashed var(--primary-color);
    margin: 2rem 0;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--background-color);
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.1);
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card blockquote {
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.author-info strong {
    display: block;
    font-weight: 600;
    color: var(--heading-color);
}

.author-info span {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2rem;
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
}