body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.header {
    background-color: #28395e;
    color: #fff;
    padding: 10px;
    display: flex;
    align-items: center;
}

.logo {
    width: 50px;
    margin-right: 10px;
}

.page-title {
    margin: 0;
}

.carousel-container {
    position: relative;
    width: 80%;
    margin: 20px auto;
    overflow: hidden;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.service-item {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.service-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: transform 0.3s ease-in-out;
}

.service-item:hover img {
    transform: scale(1.1);
}

.description {
    background-color: #f0f0f0;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    transition: bottom 0.3s ease-in-out;
}

.service-item:hover .description {
    bottom: 0;
}

.description h3 {
    margin-top: 0;
}

.price {
    font-weight: bold;
    margin-bottom: 10px;
}

.pay-button {
    display: inline-block;
    background-color: #a4c969;
    color: #fff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 5px;
    margin-top: 10px;
    transition: background-color 0.3s ease-in-out;
}

.pay-button:hover {
    background-color: #8abf42;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 10px;
    font-size: 24px;
    transition: background-color 0.3s ease-in-out;
}

.carousel-btn:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

@media screen and (max-width: 768px) {
    .carousel-container {
        width: 90%;
    }

    .carousel-btn {
        font-size: 20px;
    }
}

}

.description {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 15px;
    text-align: center;
    transition: bottom 0.3s ease-in-out;
}

.service-item:hover .description {
    bottom: 0;
}

.description h3 {
    margin-top: 0;
}

.price {
    font-weight: bold;
    margin-bottom: 10px;
}

.pay-button {
    display: inline-block;
    background-color: #a4c969;
    color: #fff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 5px;
    margin-top: 10px;
    transition: background-color 0.3s ease-in-out;
}

.pay-button:hover {
    background-color: #8abf42;
}
