.services-section {
    max-width: 1300px;
    margin: auto;
    padding: 40px 20px;
}

.services-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
    color: #007b8f;
}

.services-section .subtitle {
    text-align: center;
    color: #555;
    margin-bottom: 30px;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.service-link {
  text-decoration: none;
  color: inherit;
  display: block;
}


@media (min-width: 600px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 769px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* KARTICE */
.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: 0.25s ease;
}

.service-card:hover {
    transform: scale(1.03);
    border-color: #007b8f;
    box-shadow: 0 6px 18px rgba(0, 123, 143, 0.3);
}

.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.service-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

.service-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #007b8f;
}

.service-content p {
    font-size: 14px;
    color: #666;
}
