/* Tổng thể */
.cskh-content {
    padding: 50px 0;
    margin-top: 100px; /* Khoảng cách thoáng khỏi navbar */
    background-color: #f8f9fa;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    line-height: 1.2; /* Tăng khoảng cách giữa các dòng */
}

/* Tiêu đề chính */
.cskh__heading {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
    color: #0056b3;
}

/* Mô tả */
.cskh__desc {
    text-align: center;
    font-size: 18px;
    margin-bottom: 30px;
}

/* Hình ảnh */
.cskh__img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Thông tin liên hệ */
.cskh__info {
    padding: 20px;
}

.cskh__info-heading {
    font-size: 22px;
    color: #0056b3;
    margin-top: 20px;
    margin-bottom: 8px;
}

.cskh__info-text {
    font-size: 18px;
    margin-bottom: 12px;
}

/* Phần Hỗ trợ khách hàng */
.support-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 50px;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.support-info {
    flex: 1;
    min-width: 300px;
}

.support-info h2 {
    font-size: 26px;
    color: #0056b3;
    margin-bottom: 15px;
}

.support-info ul {
    list-style: none;
    padding-left: 0;
}

.support-info ul li {
    font-size: 18px;
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.support-info ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #28a745;
}

/* Form hỗ trợ */
.support-form {
    flex: 1;
    min-width: 300px;
    padding-left: 30px;
}

.support-form h2 {
    font-size: 26px;
    color: #0056b3;
    margin-bottom: 15px;
}

.support-form form {
    display: flex;
    flex-direction: column;
}

.support-form input,
.support-form textarea {
    font-size: 16px;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    line-height: 1.2; /* Tăng khoảng cách giữa các dòng */
}

.support-form textarea {
    resize: none;
    height: 120px;
}

.support-form button {
    background-color: #007bff;
    color: #fff;
    padding: 12px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.support-form button:hover {
    background-color: #0056b3;
}

#formMessage {
    color: green;
    font-weight: bold;
    margin-top: 10px;
    opacity: 0;
    transition: opacity 0.5s ease; /* Thêm hiệu ứng */
}

/* Ẩn mặc định */
.form-message {
    color: green;
    font-weight: bold;
    margin-top: 10px;
    opacity: 0;
    transition: opacity 0.5s ease;
    text-align: center;
}

/* Khi URL có chứa success=true thì hiển thị */
:has(form[action*="success=true"]) .form-message {
    opacity: 1;
}
