.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-image {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.service-card h3 {
    color: #5a2d7a;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.price {
    font-weight: bold;
    color: #8d5ba4;
    font-size: 1.2rem;
    margin: 15px 0;
}

.description {
    color: var(--black2);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.button-container {
    margin-top: auto;
    padding-top: 15px;
}

.service-btn {
    background: linear-gradient(45deg, #8d5ba4, #6a3d7a);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 200px;
}

.service-btn:hover {
    background: linear-gradient(45deg, #6a3d7a, #4e2c5a);
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-btn {
        max-width: 100%;
    }
}