        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f7f3ee;
            color: #2c2c2c;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #c45a3c;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #8c3a24;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin-bottom: 1.2rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.25;
            color: #1e1e1e;
            margin-top: 0;
            font-weight: 700;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 0.75rem;
        }
        h2 {
            font-size: 1.9rem;
            margin-top: 2.8rem;
            margin-bottom: 0.6rem;
            border-bottom: 3px solid #e8d5c4;
            padding-bottom: 0.35rem;
        }
        h3 {
            font-size: 1.5rem;
            margin-top: 2rem;
            margin-bottom: 0.5rem;
        }
        h4 {
            font-size: 1.2rem;
            margin-top: 1.6rem;
            margin-bottom: 0.4rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2rem;
        }
        strong {
            color: #1e1e1e;
            font-weight: 700;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #1e3a5f 0%, #2a4d7a 100%);
            color: #fff;
            padding: 0.6rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem 1rem;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            color: #f9e6cf;
            letter-spacing: -0.5px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            font-size: 2rem;
            color: #f6c89f;
        }
        .my-logo:hover {
            color: #ffdbb5;
            text-decoration: none;
        }
        .nav-wrap {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .main-nav {
            display: flex;
            gap: 0.3rem 0.8rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #f0e7dc;
            font-size: 0.9rem;
            font-weight: 500;
            padding: 0.4rem 0.7rem;
            border-radius: 8px;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .main-nav a:hover {
            background: rgba(255, 255, 255, 0.18);
            color: #fff;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 4px;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid rgba(255, 255, 255, 0.4);
            border-radius: 8px;
            color: #fff;
            font-size: 1.5rem;
            padding: 0.3rem 0.7rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.15);
        }
        .breadcrumb {
            background: #f0e8e0;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #ddd6cc;
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb a {
            color: #6d4c41;
        }
        .breadcrumb a:hover {
            color: #3e2c24;
        }
        .breadcrumb .sep {
            color: #9e8c80;
            margin: 0 0.2rem;
        }
        .breadcrumb .current {
            color: #5a3f34;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #f5e6d8 0%, #e9d5c0 100%);
            padding: 2.2rem 0 1.8rem;
            text-align: center;
            border-bottom: 4px solid #d9bca8;
        }
        .hero h1 {
            font-size: 2.6rem;
            color: #1e3a5f;
            margin-bottom: 0.5rem;
        }
        .hero h1 i {
            color: #c45a3c;
            margin-right: 10px;
        }
        .hero p {
            font-size: 1.15rem;
            color: #4a3a32;
            max-width: 750px;
            margin: 0 auto 0.8rem;
        }
        .hero .last-updated {
            display: inline-block;
            background: #1e3a5f;
            color: #f9e6cf;
            padding: 0.2rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 500;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2.5rem 0;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            min-width: 0;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            margin-bottom: 1.8rem;
            border: 1px solid #e8ddd2;
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            margin-top: 0;
            margin-bottom: 1rem;
            border-bottom: 2px solid #e8d5c4;
            padding-bottom: 0.5rem;
            color: #1e3a5f;
        }
        .sidebar-card ul {
            list-style: none;
            padding-left: 0;
            margin-bottom: 0;
        }
        .sidebar-card li {
            margin-bottom: 0.5rem;
            border-bottom: 1px solid #f0e8e0;
            padding-bottom: 0.5rem;
        }
        .sidebar-card li:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .sidebar-card a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 500;
            color: #4a3a32;
        }
        .sidebar-card a i {
            color: #c45a3c;
            width: 1.2rem;
            text-align: center;
        }
        .sidebar-card a:hover {
            color: #c45a3c;
            text-decoration: none;
        }
        .featured-image-wrap {
            margin: 1.8rem 0 2.2rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
            background: #fff;
            padding: 0.8rem;
            border: 1px solid #e8ddd2;
        }
        .featured-image-wrap img {
            border-radius: 10px;
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .featured-image-wrap figcaption {
            padding: 0.8rem 0.5rem 0.3rem;
            font-size: 0.9rem;
            color: #6d5a4e;
            text-align: center;
            font-style: italic;
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 1.2rem;
            margin: 1.8rem 0;
        }
        .gallery-item {
            background: #fff;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
            transition: transform 0.25s ease, box-shadow 0.3s ease;
            border: 1px solid #e8ddd2;
        }
        .gallery-item:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
        }
        .gallery-item img {
            width: 100%;
            height: 160px;
            object-fit: cover;
            border-radius: 14px 14px 0 0;
        }
        .gallery-item .caption {
            padding: 0.6rem 0.8rem 0.8rem;
            font-size: 0.9rem;
            font-weight: 600;
            color: #2c2c2c;
            text-align: center;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0 2rem;
            border-radius: 12px;
            border: 1px solid #e8ddd2;
            background: #fff;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            min-width: 600px;
        }
        th,
        td {
            padding: 0.8rem 1rem;
            text-align: left;
            border-bottom: 1px solid #f0e8e0;
        }
        th {
            background: #1e3a5f;
            color: #f9e6cf;
            font-weight: 600;
            white-space: nowrap;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #faf5f0;
        }
        .form-card {
            background: #fff;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            border: 1px solid #e8ddd2;
            margin: 2rem 0;
        }
        .form-card h3 {
            margin-top: 0;
            color: #1e3a5f;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #3e2c24;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #ddd6cc;
            border-radius: 10px;
            font-size: 0.95rem;
            font-family: inherit;
            transition: border-color 0.25s;
            background: #fcfaf8;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #c45a3c;
            background: #fff;
        }
        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.7rem 1.8rem;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            background: #c45a3c;
            color: #fff;
        }
        .btn:hover {
            background: #a44830;
            transform: scale(1.02);
        }
        .btn-secondary {
            background: #1e3a5f;
        }
        .btn-secondary:hover {
            background: #15304f;
        }
        .star-rating {
            display: flex;
            gap: 0.4rem;
            font-size: 1.8rem;
            cursor: pointer;
            direction: rtl;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #ddd6cc;
            transition: color 0.2s;
            cursor: pointer;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5b342;
        }
        .site-footer {
            background: #1e2f3f;
            color: #d6cfc5;
            padding: 2.5rem 0 1.5rem;
            margin-top: auto;
            border-top: 4px solid #c45a3c;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-grid h4 {
            color: #f9e6cf;
            margin-top: 0;
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }
        .footer-grid a {
            color: #b8aa9e;
            display: inline-block;
            margin-bottom: 0.3rem;
        }
        .footer-grid a:hover {
            color: #f6c89f;
        }
        .footer-bottom {
            border-top: 1px solid #3d505f;
            padding-top: 1.2rem;
            text-align: center;
            font-size: 0.85rem;
            color: #9a8e84;
        }
        .footer-bottom .copyright {
            margin-bottom: 0.3rem;
        }
        friend-link {
            display: block;
            background: #2a3f4f;
            padding: 0.8rem 1.2rem;
            border-radius: 10px;
            margin-top: 0.8rem;
            font-size: 0.9rem;
        }
        friend-link a {
            color: #f6c89f;
            margin: 0 0.3rem;
        }
        friend-link a:hover {
            color: #ffdbb5;
        }
        @media (max-width: 992px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: 2;
            }
            .main-content {
                order: 1;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .hero h1 {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(30, 58, 95, 0.98);
                border-radius: 12px;
                padding: 0.8rem 0.5rem;
                margin-top: 0.5rem;
                border: 1px solid rgba(255, 255, 255, 0.15);
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 1rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            }
            .main-nav a:last-child {
                border-bottom: none;
            }
            .nav-wrap {
                flex-wrap: wrap;
            }
            .header-inner {
                align-items: center;
            }
            .hero h1 {
                font-size: 1.7rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            }
            .form-card {
                padding: 1.2rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .my-logo i {
                font-size: 1.5rem;
            }
            table {
                font-size: 0.85rem;
                min-width: 450px;
            }
            th,
            td {
                padding: 0.5rem 0.6rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.35rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .hero h1 {
                font-size: 1.4rem;
            }
            .gallery-grid {
                grid-template-columns: 1fr 1fr;
                gap: 0.8rem;
            }
            .gallery-item img {
                height: 110px;
            }
            .star-rating {
                font-size: 1.4rem;
            }
        }
        .text-muted {
            color: #6d5a4e;
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            flex-wrap: wrap;
        }
        .gap-1 {
            gap: 1rem;
        }
        .rounded-img {
            border-radius: 14px;
        }
        .emoji-lg {
            font-size: 1.4em;
        }
        .highlight-box {
            background: #fcf6f0;
            border-left: 5px solid #c45a3c;
            padding: 1.2rem 1.5rem;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
