* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f4f7fc;
            color: #1a2a3a;
            line-height: 1.8;
            font-size: 16px;
        }
        a {
            color: #0a4b7a;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #d4a017;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(145deg, #0b1f2e 0%, #1a3a4a 100%);
            padding: 18px 0;
            border-bottom: 4px solid #d4a017;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            display: flex;
            flex-direction: column;
            font-size: 1.8rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: 1px;
            line-height: 1.2;
        }
        .my-logo a {
            color: #fff;
            text-decoration: none;
            font-size: 1.8rem;
            font-weight: 800;
        }
        .my-logo a:hover {
            color: #d4a017;
            text-decoration: none;
        }
        .my-logo .logo-sub {
            font-size: 0.7rem;
            font-weight: 300;
            color: #b0c7d9;
            letter-spacing: 2px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px 10px;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        nav a {
            color: #e0edf5;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.95rem;
            transition: background 0.25s, color 0.25s;
        }
        nav a:hover {
            background: #d4a017;
            color: #0b1f2e;
            text-decoration: none;
        }
        .breadcrumb {
            background: #e9eef2;
            padding: 12px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #d0d9e0;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            padding: 0 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 12px;
            color: #7a8a9a;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #0a4b7a;
        }
        .breadcrumb .current {
            color: #4a5a6a;
            font-weight: 600;
        }
        main {
            padding: 40px 0 60px;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #0b1f2e;
            margin-bottom: 0.6rem;
            line-height: 1.2;
            border-left: 6px solid #d4a017;
            padding-left: 20px;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #0a3a4a;
            margin-top: 2.8rem;
            margin-bottom: 1rem;
            border-bottom: 2px solid #d4a017;
            padding-bottom: 6px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #0f4a5a;
            margin-top: 2rem;
            margin-bottom: 0.7rem;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #1a5a6a;
            margin-top: 1.4rem;
            margin-bottom: 0.4rem;
        }
        p {
            margin-bottom: 1.2rem;
            color: #2a3a4a;
        }
        .hero-img {
            border-radius: 18px;
            margin: 30px 0 30px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .last-updated {
            display: inline-block;
            background: #e9eef2;
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
            color: #3a5a6a;
            margin: 10px 0 20px;
            font-weight: 500;
        }
        .highlight-box {
            background: linear-gradient(135deg, #f0f6fd, #e3ecf5);
            border-left: 6px solid #d4a017;
            padding: 20px 28px;
            border-radius: 12px;
            margin: 24px 0;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .highlight-box strong {
            color: #0a3a4a;
        }
        .rating-stars {
            color: #d4a017;
            letter-spacing: 2px;
            font-size: 1.1rem;
        }
        .faq-item {
            background: #fff;
            border-radius: 14px;
            padding: 18px 24px;
            margin-bottom: 14px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
            border: 1px solid #e4eaf0;
        }
        .faq-item h4 {
            margin-top: 0;
            color: #0b2a3a;
        }
        .hotel-card {
            background: #fff;
            border-radius: 18px;
            padding: 24px 28px;
            margin: 20px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid #e4eaf0;
            transition: transform 0.2s, box-shadow 0.3s;
        }
        .hotel-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
        }
        .hotel-card h3 {
            margin-top: 0;
        }
        .hotel-card .meta {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            font-size: 0.95rem;
            color: #4a6a7a;
            margin: 6px 0 12px;
        }
        .btn {
            display: inline-block;
            background: #0a4b7a;
            color: #fff;
            padding: 10px 28px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            border: none;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
        }
        .btn:hover {
            background: #d4a017;
            color: #0b1f2e;
            text-decoration: none;
            transform: scale(1.02);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #0a4b7a;
            color: #0a4b7a;
        }
        .btn-outline:hover {
            background: #0a4b7a;
            color: #fff;
        }
        .form-section {
            background: #fff;
            border-radius: 18px;
            padding: 30px 32px;
            margin: 32px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid #e4eaf0;
        }
        .form-section h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 18px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            color: #1a3a4a;
            margin-bottom: 4px;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border-radius: 10px;
            border: 1px solid #c8d4de;
            font-size: 1rem;
            font-family: inherit;
            transition: border 0.2s;
            background: #f9fbfd;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #0a4b7a;
            outline: none;
            box-shadow: 0 0 0 3px rgba(10, 75, 122, 0.12);
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #c8d4de;
            cursor: pointer;
            transition: color 0.15s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #d4a017;
        }
        footer {
            background: #0b1f2e;
            color: #c0d0de;
            padding: 40px 0 30px;
            border-top: 4px solid #d4a017;
            margin-top: 50px;
        }
        footer .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: space-between;
        }
        footer a {
            color: #b0cce0;
        }
        footer a:hover {
            color: #d4a017;
        }
        friend-link {
            display: block;
            padding: 18px 0;
            border-top: 1px solid #1a3a4a;
            margin-top: 24px;
            font-size: 0.95rem;
            color: #8aa0b0;
        }
        friend-link a {
            color: #b0cce0;
            display: inline-block;
            margin: 4px 12px 4px 0;
        }
        friend-link a:hover {
            color: #d4a017;
        }
        .copyright {
            font-size: 0.85rem;
            color: #6a8a9a;
            padding-top: 16px;
            border-top: 1px solid #1a3a4a;
            margin-top: 16px;
            text-align: center;
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #0f2a3a;
                padding: 18px 12px;
                border-radius: 0 0 16px 16px;
                margin-top: 12px;
                gap: 6px;
            }
            nav.active {
                display: flex;
            }
            nav a {
                padding: 10px 18px;
                width: 100%;
                border-radius: 8px;
            }
            h1 {
                font-size: 1.9rem;
                padding-left: 14px;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .hotel-card {
                padding: 18px 16px;
            }
            .form-section {
                padding: 20px 18px;
            }
            .hero-img {
                max-height: 260px;
            }
            footer .footer-inner {
                flex-direction: column;
                gap: 16px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            h1 {
                font-size: 1.6rem;
            }
            .my-logo a {
                font-size: 1.4rem;
            }
        }
        .flex-between {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }
        .gap-2 {
            gap: 12px;
        }
        .mt-2 {
            margin-top: 20px;
        }
        .mb-2 {
            margin-bottom: 20px;
        }
        .text-muted {
            color: #5a7a8a;
        }
        .fw-bold {
            font-weight: 700;
        }
        .small {
            font-size: 0.9rem;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 20px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        th,
        td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #e4eaf0;
        }
        th {
            background: #0a3a4a;
            color: #fff;
            font-weight: 600;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #f4f8fc;
        }
        .tag {
            display: inline-block;
            background: #d4a01720;
            color: #7a5a00;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
        }
