/* ส่วนของ Container */
.container-services {
    margin-top: 60px;
    width: 100%;
    max-width: 480px;
    padding: 20px;
    box-sizing: border-box;
}

/* ส่วนของโปรไฟล์ */
.header-services {
    display: flex;
    align-items: center;
    background: #3b6eaf;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-right: 0px;
}

.header-text h1 {
    margin: 0;
    font-size: 22px;
    font-weight: bold;
}

.header-text p {
    margin: 5px 0 0;
    font-size: 14px;
}

/* สไตล์ของการ์ด */
.card-line-service, .card-online-service {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    transition: transform 0.2s ease;
}

.card-line-service:hover, .card-online-service:hover {
    transform: translateY(-5px);
}

.card-content-service {
    display: flex;
    align-items: center;
}

.icon {
    width: 50px;
    height: 50px;
    margin-right: 15px;
}

.text h2 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.text p {
    margin: 5px 0 0;
    font-size: 12px;
}

.arrow {
    font-size: 32px;
    color: #fff;
    font-weight: bold;
}

/* สไตล์ของ LINE Customer Service */
.card-line-service {
    background: linear-gradient(to right, #ff9a8b, #ff6a88, #ff99ac);
    color: #fff;
}

/* สไตล์ของ Online Customer Service */
.card-online-service {
    background: linear-gradient(to right, #64b3f4, #64b3f4, #c2e9fb);
    color: #fff;
}

/* Responsive Design สำหรับ Mobile */
@media (max-width: 600px) {
    .container-services {
        width: 370px;
        margin-top: 50px;
        padding: 15px;
    }

    .header-services {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .avatar {
        margin-bottom: 15px;
    }

    .card-line-service, .card-online-service {
        text-align: center;
    }

    .arrow {
        font-size: 30px;
    }

    .header-text h1 {
        font-size: 20px;
    }

    .header-text p {
        font-size: 12px;
    }
}