
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.service-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.service {
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    width: calc(33.333% - 20px);
    transition: transform 0.3s ease-in-out;
}

.service:hover {
    transform: translateY(-10px);
}

.service img {
    max-width: 100%;
    border-radius: 8px;
    height: auto;
}

.service h3 {
    font-size: 24px;
    margin: 15px 0;
}

.service ul {
    list-style-type: disc;
    text-align: left;
    padding-left: 20px;
    margin: 15px 0;
}

.service p {
    font-size: 16px;
    line-height: 1.6;
}

.buy-btn {
    display: inline-block;
    background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.buy-btn:hover {
    background-color: #0056b3;
}

@media (max-width: 1024px) {
    .service {
        width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 28px;
    }

    .service {
        width: 100%;
    }

    .service img {
        max-height: 200px;
        object-fit: cover;
    }
}
