/* Service Page CSS */
.mekup_service-card {
    background: #fff;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
}

.mekup_service-img {
    height: 220px;
    overflow: hidden;
}

.mekup_service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mekup_service-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mekup_service-price {
    margin-bottom: 20px;
}

.mekup_service-price span {
    font-weight: 600;
    color: #c28565;
}

.mekup_service-btn {
    margin-top: auto;
}

.mekup_about-img img,
.mekup_choose-img img,
.mekup_category-img img {
    width: 100%;
    border-radius: 10px;
}

.mekup_choose-img img,
.mekup_category-img img {
    object-fit: cover;
}

.mekup_choose-wrap,
.mekup_category-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mekup_choose-item,
.mekup_category-item {
    display: flex;
    gap: 15px;
    padding: 0;
    background: transparent;
}

.mekup_choose-icon,
.mekup_category-icon {
    width: 50px;
    height: 50px;
    background: #c28565;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mekup_choose-icon i,
.mekup_category-icon i {
    color: #fff;
    font-size: 22px;
}

.mekup_choose-content,
.mekup_category-content {
    flex: 1;
}

.mekup_choose-content p,
.mekup_category-content p {
    margin-bottom: 0;
}

.mekup_service-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}

.mekup_service-list li {
    margin-bottom: 5px;
}

.mekup_service-list li i {
    color: #c28565;
}

.mekup_service-list li a {
    color: #c28565;
    text-decoration: none;
    font-weight: 500;
}

.mekup_service-list li a:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .mekup_choose-img img,
    .mekup_category-img img {
        max-height: 350px;
    }
}

@media (max-width: 768px) {
    .mekup_service-img {
        height: 200px;
    }
    .mekup_service-content {
        padding: 15px;
    }
    .mekup_choose-item,
    .mekup_category-item {
        flex-direction: column;
        text-align: center;
    }
    .mekup_choose-icon,
    .mekup_category-icon {
        margin: 0 auto;
    }
    .mekup_choose-img img,
    .mekup_category-img img {
        max-height: 300px;
    }
}
