/* styles.css */
.service {
    position: relative;
    gap: 20px;
    background: var(--primary-color);
    color: var(--text-color);
    padding: 50px 50px;
    padding-top: 150px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    text-align: center;
}

.service img {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 450px;
    border-radius: 4px;
}

.service .content-service {
    position: relative;
    width: 100%;
    max-width: 650px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
}

.service .content-service h2 {
    position: relative;
    font-size: 26px;
}

.service .content-service .description {
    position: relative;
    font-size: 18px;
    font-weight: 500;
}

.service h3 {
    position: relative;
    font-size: 20px;
    margin-top: 20px;
}

.service .content-service ul {
    list-style: none;
    position: relative;
    width: 650px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    color: #333;
}

.service .content-service ul li {
    position: relative;
    width: 100%;
    max-width: 200px;
    height: 200px;
    background: #fff;
    border-radius: 5px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-direction: column;
    text-align: center;
    transition: .5s;
}

.service .content-service ul li:hover {
    transform: translateY(-5px);
    transition: .5s;
}

.service .content-service ul li span {
    position: absolute;
    font-size: 120px;
    font-weight: 900;
    top: -20px;
    right: 20px;
    color: #00000025;
}

.service .content-service ul li h4 {
    position: relative;
    font-size: 20px;
    text-align: center;
}

.service .content-service ul li p {
    position: relative;
    font-size: 14px;
    text-align: center;
    font-weight: 600;
}

/* Responsiveness */
@media (max-width: 1200px) {
    .service {
        padding: 50px 30px;
    }
    .service .content-service {
        max-width: 100%;
    }
    .service .content-service ul {
        gap: 15px;
    }
    .service .content-service ul li {
        max-width: 150px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    .service {
        padding: 50px 20px;
        flex-direction: column;
        align-items: center;
    }
    .service .content-service {
        width: 100%;
    }
    .service img {
        height: auto;
    }
    .service .content-service ul {
        gap: 15px;
        width: 100%;
    }
    .service .content-service ul li {
        max-width: 120px;
        height: 120px;
    }
    .service .content-service h2 {
        font-size: 22px;
    }
    .service .content-service .description {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .service {
        padding: 30px 10px;
        flex-direction: column;
        align-items: center;
    }
    .service .content-service {
        padding: 0 10px;
    }
    .service img {
        height: auto;
    }
    .service .content-service ul {
        gap: 10px;
        width: 100%;
    }
    .service .content-service ul li {
        width: 100%;
        max-width: none;
        height: auto;
    }
    .service .content-service ul li span {
        font-size: 100px;
    }
    .service .content-service h2 {
        font-size: 20px;
    }
    .service .content-service .description {
        font-size: 14px;
    }
}
