        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            line-height: 1.7;
            color: #1e1e2a;
            background: #faf9f6;
            padding: 0 1rem;
        }
        a {
            color: #0057a3;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #d4001a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.04);
            border-radius: 24px;
            padding: 1.5rem 2rem 2rem;
            margin-top: 1rem;
            margin-bottom: 3rem;
        }
        .header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 0.75rem 0 1.25rem;
            border-bottom: 2px solid #eae7e0;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(145deg, #002b5c, #004a8f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #d4001a;
            font-size: 2rem;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.85;
        }
        .nav-wrap {
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        .nav-list li a {
            display: block;
            padding: 0.5rem 1rem;
            font-weight: 600;
            font-size: 0.9rem;
            border-radius: 30px;
            background: transparent;
            color: #1e1e2a;
            transition: all 0.2s;
        }
        .nav-list li a:hover {
            background: #002b5c;
            color: #fff;
            text-decoration: none;
        }
        .nav-list li a i {
            margin-right: 0.4rem;
            font-size: 0.8rem;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #002b5c;
            padding: 0.2rem 0.4rem;
        }
        .nav-toggle {
            display: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0.8rem 0 0.4rem;
            font-size: 0.85rem;
            color: #5e5e6e;
        }
        .breadcrumb li+li::before {
            content: "›";
            padding: 0 0.6rem;
            color: #b0aab0;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #0057a3;
        }
        .breadcrumb .active {
            color: #1e1e2a;
            font-weight: 500;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 1.2rem 0 0.8rem;
            color: #002b5c;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            margin: 2.2rem 0 0.9rem;
            color: #003d6b;
            border-left: 6px solid #d4001a;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin: 1.6rem 0 0.7rem;
            color: #1e3a5f;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 1.2rem 0 0.5rem;
            color: #2a4a6e;
        }
        p {
            margin-bottom: 1.1rem;
            color: #2c2c3a;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 400;
            color: #3a3a4e;
            background: #f4f2ee;
            padding: 1.2rem 1.8rem;
            border-radius: 16px;
            border-left: 6px solid #d4001a;
        }
        .highlight {
            background: #fff7e6;
            padding: 0.1rem 0.4rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .badge {
            display: inline-block;
            background: #d4001a;
            color: #fff;
            font-size: 0.75rem;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-weight: 600;
            letter-spacing: 0.3px;
        }
        .last-update {
            display: block;
            text-align: right;
            font-size: 0.85rem;
            color: #6a6a7a;
            border-top: 1px dashed #ddd;
            padding-top: 0.6rem;
            margin-top: 1.2rem;
        }
        .feature-image {
            margin: 1.8rem 0 2.2rem;
            border-radius: 16px;
            overflow: hidden;
            background: #eae7e0;
        }
        .feature-image img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .feature-image figcaption {
            padding: 0.6rem 1rem;
            font-size: 0.85rem;
            color: #5a5a6a;
            background: #f4f2ee;
            font-style: italic;
        }
        .venue-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.8rem;
            margin: 2rem 0;
        }
        .venue-card {
            background: #f8f7f4;
            border-radius: 16px;
            padding: 1.5rem;
            border: 1px solid #e8e4de;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .venue-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
        }
        .venue-card h4 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .venue-card h4 i {
            color: #d4001a;
        }
        .form-section {
            background: #f4f2ee;
            border-radius: 20px;
            padding: 2rem 2rem 2.2rem;
            margin: 2.5rem 0;
            border: 1px solid #e2ddd6;
        }
        .form-section h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.35rem;
            font-size: 0.9rem;
            color: #1e2a3a;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid #ccc;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            background: #fff;
            transition: border 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #0057a3;
            box-shadow: 0 0 0 3px rgba(0, 87, 163, 0.12);
        }
        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }
        .btn {
            display: inline-block;
            padding: 0.7rem 2rem;
            border: none;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.2s;
            background: #002b5c;
            color: #fff;
        }
        .btn:hover {
            background: #d4001a;
            transform: scale(1.02);
        }
        .btn i {
            margin-right: 0.5rem;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #ccc;
            cursor: pointer;
            transition: color 0.15s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f5b342;
        }
        .comment-list {
            margin-top: 1.5rem;
            border-top: 2px solid #e0dbd4;
            padding-top: 1.2rem;
        }
        .comment-item {
            background: #fff;
            border-radius: 12px;
            padding: 1rem 1.4rem;
            margin-bottom: 1rem;
            border: 1px solid #e8e4de;
        }
        .comment-item strong {
            color: #002b5c;
        }
        .comment-item .meta {
            font-size: 0.8rem;
            color: #7a7a8a;
        }
        friend-link {
            display: block;
            padding: 1.5rem 0 0.8rem;
            border-top: 2px solid #eae7e0;
            margin-top: 2.5rem;
        }
        friend-link .fl-head {
            font-weight: 700;
            font-size: 1.1rem;
            color: #002b5c;
            margin-bottom: 0.8rem;
        }
        friend-link .fl-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.8rem;
            list-style: none;
        }
        friend-link .fl-list li a {
            font-size: 0.9rem;
            color: #0057a3;
        }
        friend-link .fl-list li a:hover {
            color: #d4001a;
        }
        .footer {
            text-align: center;
            padding: 1.8rem 0 0.8rem;
            font-size: 0.85rem;
            color: #6a6a7a;
            border-top: 2px solid #eae7e0;
            margin-top: 1.5rem;
        }
        .footer a {
            color: #0057a3;
        }
        @media (max-width: 820px) {
            .container {
                padding: 1rem 1.2rem 1.5rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .header {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #f8f7f4;
                border-radius: 16px;
                padding: 0.8rem;
                margin-top: 0.8rem;
                border: 1px solid #e0dbd4;
            }
            .nav-list li a {
                padding: 0.6rem 1rem;
                border-radius: 10px;
            }
            .nav-toggle:checked~.nav-list {
                display: flex;
            }
            .nav-wrap {
                flex-wrap: wrap;
            }
            .venue-grid {
                grid-template-columns: 1fr;
            }
            .form-section {
                padding: 1.5rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .lead {
                font-size: 1rem;
                padding: 0.8rem 1.2rem;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 0.4rem;
            }
            .container {
                padding: 0.8rem 0.8rem 1.2rem;
                border-radius: 16px;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.25rem;
                padding-left: 0.6rem;
                border-left-width: 4px;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .btn {
                width: 100%;
                text-align: center;
            }
            .star-rating label {
                font-size: 1.6rem;
            }
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
        }
        th,
        td {
            padding: 0.7rem 1rem;
            text-align: left;
            border-bottom: 1px solid #e0dbd4;
        }
        th {
            background: #002b5c;
            color: #fff;
            font-weight: 600;
        }
        tr:nth-child(even) {
            background: #f8f7f4;
        }
        tr:hover td {
            background: #fff7e6;
        }
