* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Arial, sans-serif;
            background: #f7f5f0;
            color: #2d2a24;
            line-height: 1.7;
            font-size: 17px;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #8b6508;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
        }
        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #1e1b16 0%, #2c2720 100%);
            padding: 14px 0;
            border-bottom: 4px solid #b8860b;
            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 {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: 2px;
            color: #f5e6c8;
            text-shadow: 0 2px 8px rgba(184, 134, 11, 0.4);
            font-family: 'Georgia', serif;
            transition: transform 0.3s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #f5e6c8;
        }
        .my-logo span {
            color: #b8860b;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f5e6c8;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 12px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(184, 134, 11, 0.2);
        }
        .main-nav {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #e8ddd0;
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.25s;
            border: 1px solid transparent;
        }
        .main-nav a:hover {
            background: rgba(184, 134, 11, 0.15);
            border-color: #b8860b;
            color: #f5e6c8;
            text-decoration: none;
        }
        .main-nav a.active {
            background: #b8860b;
            color: #1e1b16;
        }
        .breadcrumb {
            background: #e8e2d8;
            padding: 10px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #d6cec2;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb ol li+li::before {
            content: "›";
            margin-right: 10px;
            color: #b8860b;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #5a4f42;
        }
        .breadcrumb a:hover {
            color: #b8860b;
        }
        .breadcrumb .current {
            color: #2d2a24;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #2c2720 0%, #3d352b 100%);
            padding: 48px 0 40px;
            text-align: center;
            border-bottom: 3px solid #b8860b;
        }
        .hero h1 {
            font-size: 2.8rem;
            color: #f5e6c8;
            font-weight: 800;
            letter-spacing: 1px;
            line-height: 1.2;
        }
        .hero h1 span {
            color: #b8860b;
        }
        .hero .subhead {
            color: #cbbaa8;
            font-size: 1.2rem;
            margin-top: 12px;
            max-width: 720px;
            margin-left: auto;
            margin-right: auto;
        }
        .hero .meta-info {
            margin-top: 18px;
            color: #a89884;
            font-size: 0.95rem;
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }
        .hero .meta-info i {
            color: #b8860b;
            margin-right: 6px;
        }
        .content-area {
            padding: 40px 0 60px;
        }
        .content-area h2 {
            font-size: 2rem;
            color: #1e1b16;
            margin-top: 48px;
            margin-bottom: 18px;
            border-left: 6px solid #b8860b;
            padding-left: 18px;
            font-weight: 700;
        }
        .content-area h2:first-of-type {
            margin-top: 0;
        }
        .content-area h3 {
            font-size: 1.5rem;
            color: #2c2720;
            margin-top: 32px;
            margin-bottom: 12px;
            font-weight: 600;
        }
        .content-area h4 {
            font-size: 1.2rem;
            color: #3d352b;
            margin-top: 24px;
            margin-bottom: 8px;
            font-weight: 600;
            font-style: italic;
        }
        .content-area p {
            margin-bottom: 18px;
            text-align: justify;
        }
        .content-area ul,
        .content-area ol {
            margin-bottom: 20px;
            padding-left: 28px;
        }
        .content-area li {
            margin-bottom: 8px;
        }
        .content-area .highlight-box {
            background: #f0ebe3;
            border-left: 5px solid #b8860b;
            padding: 20px 24px;
            border-radius: 8px;
            margin: 24px 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }
        .content-area .highlight-box strong {
            color: #1e1b16;
        }
        .content-area .insight-tip {
            background: #e6f0ea;
            border-left: 5px solid #2d6a4f;
            padding: 16px 20px;
            border-radius: 8px;
            margin: 20px 0;
        }
        .content-area .emoji-big {
            font-size: 1.6rem;
            margin-right: 6px;
        }
        .featured-image-wrapper {
            margin: 32px 0;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            background: #e8e2d8;
            padding: 8px;
        }
        .featured-image-wrapper img {
            display: block;
            width: 100%;
            border-radius: 8px;
        }
        .featured-image-wrapper figcaption {
            padding: 10px 14px 6px;
            font-size: 0.9rem;
            color: #5a4f42;
            font-style: italic;
            text-align: center;
        }
        .related-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 12px;
            margin: 24px 0;
        }
        .related-links-grid a {
            display: block;
            background: #f0ebe3;
            padding: 12px 18px;
            border-radius: 10px;
            border: 1px solid #ddd6ca;
            transition: all 0.25s;
            font-weight: 500;
        }
        .related-links-grid a:hover {
            background: #e4ddd2;
            border-color: #b8860b;
            transform: translateY(-2px);
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(184, 134, 11, 0.15);
        }
        .related-links-grid a i {
            color: #b8860b;
            margin-right: 8px;
        }
        .search-section {
            background: #e8e2d8;
            padding: 28px 0;
            border-top: 1px solid #d6cec2;
            border-bottom: 1px solid #d6cec2;
        }
        .search-form {
            display: flex;
            max-width: 560px;
            margin: 0 auto;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .search-form input {
            flex: 1;
            min-width: 180px;
            padding: 14px 20px;
            border: 2px solid #ccc3b6;
            border-radius: 50px;
            font-size: 1rem;
            background: #fcfaf7;
            transition: border 0.3s;
            outline: none;
        }
        .search-form input:focus {
            border-color: #b8860b;
        }
        .search-form button {
            background: #b8860b;
            color: #fff;
            border: none;
            padding: 14px 32px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
        }
        .search-form button:hover {
            background: #9e7409;
            transform: scale(1.02);
        }
        .feedback-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            margin: 40px 0;
        }
        @media (max-width:768px) {
            .feedback-section {
                grid-template-columns: 1fr;
            }
        }
        .comment-box,
        .rating-box {
            background: #fcfaf7;
            border: 1px solid #ddd6ca;
            border-radius: 16px;
            padding: 28px 30px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
        }
        .comment-box h3,
        .rating-box h3 {
            margin-top: 0;
            font-size: 1.4rem;
            color: #1e1b16;
            border-bottom: 2px solid #e8e2d8;
            padding-bottom: 12px;
            margin-bottom: 18px;
        }
        .comment-box form,
        .rating-box form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .comment-box input,
        .comment-box textarea,
        .rating-box select {
            padding: 12px 16px;
            border: 2px solid #ddd6ca;
            border-radius: 10px;
            font-size: 1rem;
            background: #fcfaf7;
            transition: border 0.3s;
            outline: none;
            font-family: inherit;
        }
        .comment-box input:focus,
        .comment-box textarea:focus,
        .rating-box select:focus {
            border-color: #b8860b;
        }
        .comment-box textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-box button,
        .rating-box button {
            align-self: flex-start;
            background: #1e1b16;
            color: #f5e6c8;
            border: none;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
        }
        .comment-box button:hover,
        .rating-box button:hover {
            background: #3d352b;
            transform: scale(1.02);
        }
        .faq-item {
            border-bottom: 1px solid #ddd6ca;
            padding: 16px 0;
        }
        .faq-item:last-child {
            border-bottom: none;
        }
        .faq-item h4 {
            margin: 0 0 6px 0;
            font-size: 1.1rem;
            color: #1e1b16;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-item h4::after {
            content: "▼";
            font-size: 0.8rem;
            color: #b8860b;
            transition: transform 0.3s;
        }
        .faq-item p {
            margin: 8px 0 0 0;
            color: #4a4238;
        }
        .site-footer {
            background: #1e1b16;
            color: #cbbaa8;
            padding: 40px 0 20px;
            border-top: 4px solid #b8860b;
            margin-top: 40px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
        }
        @media (max-width:768px) {
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        .footer-inner h4 {
            color: #f5e6c8;
            font-size: 1.2rem;
            margin-bottom: 12px;
            border-bottom: 1px solid #3d352b;
            padding-bottom: 8px;
        }
        .footer-inner a {
            color: #cbbaa8;
            display: inline-block;
            margin-bottom: 6px;
        }
        .footer-inner a:hover {
            color: #b8860b;
        }
        friend-link {
            display: block;
            margin-top: 8px;
        }
        friend-link a {
            display: inline-block;
            margin-right: 16px;
            margin-bottom: 8px;
            padding: 4px 12px;
            background: #2c2720;
            border-radius: 20px;
            font-size: 0.9rem;
            border: 1px solid #3d352b;
            transition: all 0.25s;
        }
        friend-link a:hover {
            background: #3d352b;
            border-color: #b8860b;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            margin-top: 24px;
            border-top: 1px solid #2c2720;
            font-size: 0.9rem;
            color: #8a7e6e;
        }
        .copyright strong {
            color: #cbbaa8;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 16px 0 8px;
                gap: 4px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 18px;
                border-radius: 8px;
                width: 100%;
            }
            .hero h1 {
                font-size: 1.9rem;
            }
            .hero .subhead {
                font-size: 1rem;
            }
            .content-area h2 {
                font-size: 1.6rem;
            }
            .content-area h3 {
                font-size: 1.3rem;
            }
            .container {
                padding: 0 14px;
            }
            .feedback-section {
                gap: 20px;
            }
            .related-links-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            .related-links-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .search-form input {
                min-width: 140px;
            }
        }
        .eeat-note {
            background: #f9f6f0;
            border: 1px solid #e8e2d8;
            border-radius: 12px;
            padding: 20px 24px;
            margin: 28px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
        }
        .eeat-note i {
            font-size: 2.2rem;
            color: #b8860b;
        }
        .eeat-note p {
            margin: 0;
            flex: 1;
            font-size: 0.95rem;
        }
        html {
            scroll-behavior: smooth;
        }
        .skip-link {
            position: absolute;
            top: -100px;
            left: 0;
            background: #b8860b;
            color: #fff;
            padding: 8px 16px;
            z-index: 10000;
            transition: top 0.3s;
        }
        .skip-link:focus {
            top: 0;
        }
