/* Services section styles */
.services-section {
    padding: 6rem 2rem;
    background-color: #f9fafb;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.services-title {
    font-size: 2.5rem;
    color: #114c72;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.services-subtitle {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: rgb(255, 255, 255);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(127, 209, 34, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 3px solid #075c72;
}

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

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1);
}

.service-icon {
    font-size: 2rem;
    color: #0e4263;
}

.service-title {
    font-size: 1.5rem;
    color: #114c72;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-description {
    color: #0e4263;
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-title {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}