* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

.field-container {
    display: flex;
    width: 100%;
    height: 100vh;
}

.field-left-section,
.right-section {
    width: 50%;
    padding: 30px;
}

.field-left-section {
    background-color: #222;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.field-left-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.field-left-section p {
    font-size: 16px;
    line-height: 1.6;
}

.field-right-section {
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.field-services {
    background-color: rgb(60, 131, 246);
    color: white;
    padding: 40px;
    text-align: left;
    width: 70%;
}

.field-services h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.field-service-item {
    margin-bottom: 20px;
}

.field-service-item h4 {
    font-size: 22px;
    margin-bottom: 5px;
}

.field-service-item p {
    font-size: 16px;
}

.field-footer {
    margin-top: 30px;
    font-size: 12px;
    color: #666;
}

/* Media Query untuk tampilan mobile */
@media (max-width: 768px) {
    .field-container {
        flex-direction: column;
        height: auto;
    }

    .field-left-section,
    .right-section {
        width: 100%;
        padding: 20px;
    }

    .field-left-section h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .field-right-section {
        background-size: cover;
        background-position: center;
    }

    .field-services {
        width: 100%;
        padding: 20px;
    }

    .field-service-item h4 {
        font-size: 20px;
    }

    .layanan-service-item p {
        font-size: 14px;
    }

    .layanan-left-section p {
        font-size: 14px;
    }
}

/* Media Query untuk layar yang lebih kecil (ponsel sangat kecil) */
@media (max-width: 480px) {
    .layanan-left-section h2 {
        font-size: 24px;
    }

    .layanan-service-item h4 {
        font-size: 18px;
    }

    .layanan-service-item p {
        font-size: 12px;
    }

    .layanan-left-section p {
        font-size: 12px;
    }
}
