* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Arial, sans-serif;
            background: #f4f7fa;
            color: #1e2a41;
            line-height: 1.7;
            padding: 0 16px;
        }
        a {
            color: #1a5276;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #f39c12;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
            margin: 24px auto;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #fff;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
            border-radius: 20px;
            padding: 20px 28px 40px;
            margin-top: 20px;
            margin-bottom: 20px;
        }
        header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0 12px;
            border-bottom: 2px solid #e9edf2;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #1a5276, #2e86c1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 8px rgba(26, 82, 118, 0.12);
            font-family: 'Segoe UI', sans-serif;
        }
        .my-logo i {
            -webkit-text-fill-color: #f39c12;
            margin-right: 6px;
            font-size: 2rem;
        }
        .my-logo a {
            text-decoration: none;
            -webkit-text-fill-color: transparent;
            background: inherit;
            -webkit-background-clip: text;
            background-clip: text;
        }
        .my-logo a:hover {
            text-decoration: none;
            opacity: 0.85;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 2rem;
            color: #1a5276;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #eef3f8;
        }
        nav {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 18px;
            align-items: center;
        }
        nav a {
            font-weight: 600;
            font-size: 1rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
        }
        nav a:hover {
            border-bottom-color: #f39c12;
            color: #f39c12;
            text-decoration: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            font-size: 0.9rem;
            padding: 12px 0 4px;
            color: #5e6f8d;
            list-style: none;
            background: transparent;
            border-radius: 0;
            margin: 0;
        }
        .breadcrumb li {
            display: inline;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #b0c0d4;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #1a5276;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .active {
            color: #f39c12;
            font-weight: 600;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #0d2b45;
            margin: 28px 0 12px;
            line-height: 1.25;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #1a3a5c;
            margin: 40px 0 16px;
            padding-bottom: 6px;
            border-bottom: 3px solid #f39c12;
            display: inline-block;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #1e4a6e;
            margin: 28px 0 12px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2c5f8a;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: #2c3e50;
        }
        .content-img-wrapper {
            text-align: center;
            margin: 30px 0;
        }
        .content-img-wrapper figcaption {
            font-size: 0.95rem;
            color: #5e6f8d;
            margin-top: 8px;
            font-style: italic;
        }
        .search-box {
            background: #f0f4fa;
            border-radius: 60px;
            padding: 14px 24px;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
            margin: 24px 0 32px;
            border: 1px solid #dce3ed;
        }
        .search-box i {
            color: #1a5276;
            font-size: 1.2rem;
        }
        .search-box input {
            flex: 1;
            min-width: 180px;
            border: none;
            background: transparent;
            font-size: 1rem;
            padding: 8px 0;
            outline: none;
            font-family: inherit;
            color: #1e2a41;
        }
        .search-box input::placeholder {
            color: #7f8fa4;
        }
        .search-box button {
            background: #1a5276;
            color: #fff;
            border: none;
            padding: 10px 28px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-box button:hover {
            background: #f39c12;
            transform: scale(1.02);
        }
        .schedule-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0 30px;
            font-size: 0.98rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
        }
        .schedule-table th {
            background: #1a5276;
            color: #fff;
            padding: 14px 12px;
            text-align: left;
            font-weight: 700;
        }
        .schedule-table td {
            padding: 12px;
            border-bottom: 1px solid #e9edf2;
            background: #fff;
        }
        .schedule-table tr:nth-child(even) td {
            background: #f8faff;
        }
        .schedule-table tr:hover td {
            background: #fef7e9;
        }
        .feedback-section {
            background: #f9fcff;
            border-radius: 20px;
            padding: 28px 30px;
            margin: 40px 0 20px;
            border: 1px solid #e2eaf2;
        }
        .feedback-section h3 {
            margin-top: 0;
        }
        .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 16px;
        }
        .form-row input,
        .form-row textarea,
        .form-row select {
            flex: 1;
            min-width: 200px;
            padding: 12px 16px;
            border: 1px solid #d0dae8;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            background: #fff;
            transition: border 0.2s;
        }
        .form-row input:focus,
        .form-row textarea:focus,
        .form-row select:focus {
            border-color: #1a5276;
            outline: none;
            box-shadow: 0 0 0 3px rgba(26, 82, 118, 0.1);
        }
        .form-row textarea {
            min-height: 110px;
            resize: vertical;
        }
        .form-row .star-rating {
            display: flex;
            gap: 6px;
            align-items: center;
            flex-wrap: wrap;
        }
        .form-row .star-rating i {
            font-size: 1.8rem;
            color: #d0dae8;
            cursor: pointer;
            transition: color 0.15s, transform 0.15s;
        }
        .form-row .star-rating i:hover,
        .form-row .star-rating i.active {
            color: #f39c12;
            transform: scale(1.1);
        }
        .btn-primary {
            background: #1a5276;
            color: #fff;
            border: none;
            padding: 12px 32px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .btn-primary:hover {
            background: #f39c12;
            transform: translateY(-2px);
        }
        footer {
            margin-top: 48px;
            padding-top: 28px;
            border-top: 2px solid #e9edf2;
            font-size: 0.95rem;
            color: #4a5a72;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 28px;
            margin-bottom: 18px;
        }
        .footer-links a {
            color: #1a5276;
            font-weight: 500;
        }
        .footer-links a:hover {
            color: #f39c12;
        }
        .copyright {
            font-size: 0.9rem;
            color: #6b7c96;
            padding-top: 12px;
            border-top: 1px solid #e9edf2;
            text-align: center;
        }
        friend-link {
            display: block;
            margin: 16px 0 8px;
            font-weight: 500;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 0;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 10px;
            }
            .container {
                padding: 12px 14px 30px;
                border-radius: 14px;
                margin-top: 12px;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            h4 {
                font-size: 1.1rem;
            }
            p {
                font-size: 0.98rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo i {
                font-size: 1.4rem;
            }
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 16px 0 8px;
                gap: 4px;
            }
            nav.show {
                display: flex;
            }
            nav a {
                font-size: 1.05rem;
                padding: 10px 0;
                border-bottom: 1px solid #eef3f8;
                width: 100%;
            }
            .breadcrumb {
                font-size: 0.82rem;
                gap: 4px 8px;
            }
            .search-box {
                flex-direction: column;
                padding: 16px 18px;
                border-radius: 28px;
            }
            .search-box button {
                width: 100%;
                justify-content: center;
            }
            .schedule-table {
                font-size: 0.85rem;
            }
            .schedule-table th,
            .schedule-table td {
                padding: 8px 6px;
            }
            .feedback-section {
                padding: 18px 16px;
            }
            .form-row {
                flex-direction: column;
                gap: 12px;
            }
            .form-row input,
            .form-row textarea,
            .form-row select {
                min-width: 0;
                width: 100%;
            }
            .footer-links {
                flex-direction: column;
                gap: 6px 0;
            }
            friend-link a {
                display: block;
                margin: 6px 0;
            }
        }
        @media (min-width: 769px) {
            .nav-toggle {
                display: none !important;
            }
            nav {
                display: flex !important;
            }
        }
        .badge {
            background: #f39c12;
            color: #0d2b45;
            padding: 2px 14px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 0.8rem;
            display: inline-block;
            margin-right: 6px;
        }
        .highlight {
            background: #fef7e9;
            padding: 2px 8px;
            border-radius: 6px;
            font-weight: 600;
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
        .last-updated {
            font-size: 0.92rem;
            color: #5e6f8d;
            background: #f0f4fa;
            padding: 6px 16px;
            border-radius: 30px;
            display: inline-block;
            margin: 4px 0 16px;
        }
        .table-responsive {
            overflow-x: auto;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 20px 0;
        }
        @media (max-width: 600px) {
            .grid-2 {
                grid-template-columns: 1fr;
            }
        }
        .card {
            background: #f9fcff;
            border-radius: 16px;
            padding: 20px 22px;
            border: 1px solid #e2eaf2;
            transition: box-shadow 0.2s;
        }
        .card:hover {
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
        }
        .card i {
            color: #f39c12;
            font-size: 1.8rem;
            margin-bottom: 8px;
        }
        .faq-item {
            padding: 14px 0;
            border-bottom: 1px solid #e9edf2;
        }
        .faq-item:last-child {
            border-bottom: none;
        }
        .faq-item strong {
            color: #0d2b45;
            font-size: 1.05rem;
        }
