        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            background: #faf8f5;
            color: #1e1e1e;
            line-height: 1.8;
            padding: 0;
            margin: 0;
            min-height: 100vh;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #1a3c5e;
            text-decoration: underline;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #8b4513;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin-bottom: 1.2rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .skip-link {
            position: absolute;
            top: -100%;
            left: 1rem;
            background: #1a3c5e;
            color: #fff;
            padding: 0.6rem 1.2rem;
            z-index: 1000;
            border-radius: 0 0 4px 4px;
            font-weight: bold;
            text-decoration: none;
        }
        .skip-link:focus {
            top: 0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(145deg, #1a2a3a 0%, #0f1a26 100%);
            color: #f0ede6;
            padding: 1rem 0;
            border-bottom: 3px solid #c49a6c;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-decoration: none;
            color: #f0ede6;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo:hover {
            color: #e8d5b5;
        }
        .my-logo i {
            color: #c49a6c;
            font-size: 1.6rem;
        }
        .my-logo span {
            font-family: 'Georgia', serif;
            font-style: italic;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #c49a6c;
            color: #c49a6c;
            font-size: 1.5rem;
            padding: 0.3rem 0.8rem;
            border-radius: 4px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(196, 154, 108, 0.15);
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 0.2rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .nav-menu li a {
            color: #d9d0c4;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            font-size: 0.95rem;
            transition: background 0.2s, color 0.2s;
            display: block;
            white-space: nowrap;
        }
        .nav-menu li a:hover,
        .nav-menu li a:focus {
            background: rgba(196, 154, 108, 0.2);
            color: #f0ede6;
        }
        .breadcrumb {
            padding: 0.8rem 0 0.4rem;
            font-size: 0.85rem;
            color: #a09888;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem;
        }
        .breadcrumb a {
            color: #b8a88a;
            text-decoration: underline;
        }
        .breadcrumb a:hover {
            color: #e8d5b5;
        }
        .breadcrumb .sep {
            margin: 0 0.2rem;
            color: #6a6050;
        }
        .main-content {
            padding: 2rem 0 3rem;
        }
        h1 {
            font-size: 2.6rem;
            line-height: 1.2;
            margin: 0 0 0.5rem;
            color: #1a2a3a;
            font-weight: 800;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 2rem;
            margin: 2.8rem 0 1rem;
            color: #1a2a3a;
            border-bottom: 2px solid #c49a6c;
            padding-bottom: 0.4rem;
            font-weight: 700;
        }
        h3 {
            font-size: 1.5rem;
            margin: 2rem 0 0.8rem;
            color: #2a3a4a;
            font-weight: 600;
        }
        h4 {
            font-size: 1.2rem;
            margin: 1.6rem 0 0.6rem;
            color: #3a4a5a;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        .lead {
            font-size: 1.2rem;
            color: #2a3a3a;
            font-weight: 400;
            margin-bottom: 1.8rem;
            padding: 1rem 1.5rem;
            background: #f0ebe4;
            border-left: 4px solid #c49a6c;
            border-radius: 0 6px 6px 0;
        }
        .featured-image {
            margin: 1.8rem 0 2rem;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            background: #e8e0d8;
        }
        .featured-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            aspect-ratio: 16/9;
        }
        .featured-image figcaption {
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            color: #5a5048;
            background: #f0ebe4;
            font-style: italic;
            border-top: 1px solid #ddd6ce;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .card {
            background: #fff;
            border-radius: 8px;
            padding: 1.5rem;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
            border: 1px solid #e8e0d8;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.10);
        }
        .card h3 {
            margin-top: 0;
            font-size: 1.25rem;
        }
        .card h3 a {
            text-decoration: none;
            color: #1a2a3a;
        }
        .card h3 a:hover {
            color: #8b4513;
        }
        .card p {
            font-size: 0.95rem;
            color: #3a3a3a;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.95rem;
            background: #fff;
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
        }
        .data-table th {
            background: #1a2a3a;
            color: #f0ede6;
            padding: 0.8rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #e8e0d8;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:nth-child(even) {
            background: #f8f4f0;
        }
        .form-section {
            background: #f0ebe4;
            border-radius: 8px;
            padding: 2rem;
            margin: 2.5rem 0;
            border: 1px solid #ddd6ce;
        }
        .form-section h2 {
            margin-top: 0;
            border-bottom-color: #c49a6c;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #1a2a3a;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-family: 'Georgia', serif;
            font-size: 1rem;
            background: #fff;
            transition: border-color 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #c49a6c;
            box-shadow: 0 0 0 3px rgba(196, 154, 108, 0.15);
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn {
            display: inline-block;
            background: #1a2a3a;
            color: #f0ede6;
            padding: 0.7rem 2rem;
            border: none;
            border-radius: 4px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            font-family: 'Georgia', serif;
            text-decoration: none;
        }
        .btn:hover {
            background: #2a3a4a;
            transform: translateY(-1px);
        }
        .btn:active {
            transform: translateY(0);
        }
        .btn-secondary {
            background: #6a6050;
        }
        .btn-secondary:hover {
            background: #7a7060;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            font-size: 1.8rem;
            margin: 0.5rem 0 1rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #ccc;
            transition: color 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f4b942;
        }
        .search-box {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .search-box input {
            flex: 1;
            min-width: 180px;
        }
        .site-footer {
            background: #1a2a3a;
            color: #d9d0c4;
            padding: 2.5rem 0 1.5rem;
            border-top: 3px solid #c49a6c;
            margin-top: 2rem;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
        }
        .footer-inner h4 {
            color: #e8d5b5;
            margin: 0 0 0.8rem;
            font-size: 1.1rem;
            border-bottom: 1px solid #3a4a5a;
            padding-bottom: 0.4rem;
        }
        .footer-inner a {
            color: #b8a88a;
            text-decoration: underline;
        }
        .footer-inner a:hover {
            color: #e8d5b5;
        }
        .footer-inner ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-inner ul li {
            margin-bottom: 0.3rem;
        }
        .footer-bottom {
            text-align: center;
            padding-top: 1.5rem;
            margin-top: 1.5rem;
            border-top: 1px solid #3a4a5a;
            font-size: 0.9rem;
            color: #8a8070;
        }
        .footer-bottom .copyright {
            margin-bottom: 0.3rem;
        }
        friend-link {
            display: block;
            padding: 0.8rem 1.2rem;
            background: #f0ebe4;
            border-radius: 6px;
            margin: 0.5rem 0;
            font-size: 0.95rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 0.6rem 0.2rem 0;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #7a7060;
            margin: 1rem 0 0;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .last-updated i {
            color: #c49a6c;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #0f1a26;
                padding: 0.8rem;
                border-radius: 6px;
                margin-top: 0.5rem;
                border: 1px solid #2a3a4a;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                padding: 0.6rem 0.8rem;
                white-space: normal;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .container {
                padding: 0 1rem;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .data-table {
                font-size: 0.85rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.5rem 0.6rem;
            }
            .form-section {
                padding: 1.2rem;
            }
            .header-inner {
                gap: 0.5rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .star-rating {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.5rem;
            }
            .lead {
                font-size: 1rem;
                padding: 0.8rem 1rem;
            }
            .btn {
                padding: 0.6rem 1.2rem;
                font-size: 0.9rem;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
        }
        @media (min-width: 769px) {
            .nav-toggle {
                display: none !important;
            }
            .nav-menu {
                display: flex !important;
            }
        }
        @media print {
            .site-header {
                position: static;
                background: #fff;
                color: #000;
                border-bottom: 2px solid #ccc;
            }
            .nav-toggle,
            .nav-menu {
                display: none !important;
            }
            .site-footer {
                background: #f5f5f5;
                color: #333;
                border-top: 2px solid #ccc;
            }
            .form-section {
                break-inside: avoid;
            }
            .card {
                break-inside: avoid;
            }
            .featured-image {
                break-inside: avoid;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            a {
                color: #000 !important;
                text-decoration: underline !important;
            }
        }
