/* Services Page Styles */
.services-section {
    padding: 50px 0;
}

.service-card {
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border-radius: 10px;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.service-icon i {
    font-size: 48px;
    color: #00B140;
}

.service-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.service-short-desc {
    color: #666;
    font-size: 16px;
    margin-bottom: 15px;
}

.service-content {
    color: #555;
    line-height: 1.6;
}

.service-features h5 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.service-features ul {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    padding: 5px 0;
    color: #555;
}

.service-features li:before {
    content: '✓ ';
    color: #00B140;
    font-weight: bold;
    margin-right: 5px;
}

/* Testimonials Page Styles */
.testimonials-section {
    padding: 50px 0;
}

.testimonial-card {
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
}

.testimonial-rating {
    font-size: 18px;
}

.testimonial-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    line-height: 1.6;
}

.testimonial-author {
    border-top: 1px solid #ddd;
    padding-top: 15px;
    margin-top: 15px;
}

.client-name {
    font-size: 16px;
    color: #333;
}

.client-position {
    font-size: 14px;
    color: #888;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #00B140 0%, #008830 100%);
    color: white;
}

.cta-section h2 {
    color: white;
    margin-bottom: 15px;
}

.cta-section p {
    color: white;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background: white;
    color: #00B140;
    border: none;
    font-weight: bold;
    padding: 12px 30px;
}

.cta-section .btn-primary:hover {
    background: #f0f0f0;
}
