/* Định dạng chung */
.FantaTour {
    max-width: 1200px;
    margin: 150px auto 20px;
    padding: 30px;
    font-family: 'Arial', sans-serif;
    line-height: 1.8;
    color: #333;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Tiêu đề chính */
.FantaTour h5 {
    font-size: 50px;
    color: #004a99;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
    margin-top: 10px;
    position: relative;
    display: inline-block;
}

.FantaTour h5::after {
    content: "";
    width: 50px;
    height: 4px;
    background: #004a99;
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    transition: width 0.3s ease-in-out;
}

.FantaTour h5:hover::after {
    width: 80px;
}

/* Tiêu đề phụ */
.FantaTour h6 {
    font-size: 22px;
    color: #0066cc;
    font-weight: bold;
    margin-bottom: 12px;
    border-left: 5px solid #0066cc;
    padding-left: 15px;
    transition: all 0.3s ease-in-out;
}

/* Hiệu ứng hover tiêu đề phụ */
.FantaTour h6:hover {
    color: #004a99;
    border-left-color: #004a99;
}

/* Phần giới thiệu chung */
.about-us {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
}

/* Các phần nội dung chính */
.history,
.mission-values,
.achievements,
.services,
.customer-policy,
.commitment {
    background: #f0f8ff;
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Hiệu ứng khi hover vào section */
.history:hover,
.mission-values:hover,
.achievements:hover,
.services:hover,
.customer-policy:hover,
.commitment:hover {
    transform: translateY(-5px);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
}

/* Định dạng hình ảnh */
.history img,
.mission-values img,
.achievements img,
.services img,
.customer-policy img,
.commitment img {
    display: block;
    margin: 20px auto;
    max-width: 300px;
    transition: transform 0.3s ease-in-out;
}

.history img:hover,
.mission-values img:hover,
.achievements img:hover,
.services img:hover,
.customer-policy img:hover,
.commitment img:hover {
    transform: scale(1.05);
}

/* Làm nổi bật danh sách */
.FantaTour ul {
    list-style: none;
    padding: 0;
}

.FantaTour ul li {
    padding: 10px 0;
    font-size: 17px;
    display: flex;
    align-items: center;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}

/* Biểu tượng check */
.FantaTour ul li::before {
    content: "✔";
    color: #0066cc;
    font-weight: bold;
    margin-right: 12px;
    font-size: 18px;
}

/* Hiệu ứng khi hover vào mục danh sách */
.FantaTour ul li:hover {
    color: #004a99;
    transform: translateX(5px);
}

/* Định dạng văn bản */
.FantaTour p {
    font-size: 18px;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Responsive cho màn hình nhỏ */
@media (max-width: 768px) {
    .FantaTour {
        padding: 15px;
    }

    .FantaTour h5 {
        font-size: 26px;
    }

    .FantaTour h6 {
        font-size: 20px;
    }

    .FantaTour p {
        font-size: 16px;
    }
}

