* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f7f4f0;
            color: #1e1e1e;
            line-height: 1.7;
            padding: 0 1rem;
        }
        a {
            color: #b7410e;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #7a2b08;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            display: block;
            margin: 2rem auto;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            padding: 1.5rem 2rem;
            border-radius: 28px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1.2rem 0 0.8rem 0;
            border-bottom: 2px solid #e8e0d6;
            position: relative;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #b7410e, #d4833a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-family: 'Segoe UI', sans-serif;
        }
        .my-logo a {
            background: none;
            -webkit-text-fill-color: transparent;
            color: transparent;
        }
        .my-logo a:hover {
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 2rem;
            cursor: pointer;
            color: #b7410e;
            background: none;
            border: none;
            padding: 0.2rem 0.6rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #f0e8e0;
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 1.8rem;
            align-items: center;
        }
        .main-nav a {
            font-weight: 600;
            color: #2c2c2c;
            font-size: 1rem;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .main-nav a:hover {
            border-bottom-color: #b7410e;
            color: #b7410e;
            text-decoration: none;
        }
        .breadcrumbs {
            padding: 0.8rem 0 0.2rem 0;
            font-size: 0.9rem;
            color: #6b5e54;
            background: transparent;
            width: 100%;
        }
        .breadcrumbs a {
            color: #6b5e54;
        }
        .breadcrumbs a:hover {
            color: #b7410e;
        }
        .breadcrumbs span {
            margin: 0 0.4rem;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 2rem 0 0.8rem 0;
            color: #1e1a16;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 2.8rem 0 1rem 0;
            padding-bottom: 0.4rem;
            border-bottom: 3px solid #e8e0d6;
            color: #2c241e;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 2rem 0 0.8rem 0;
            color: #3d322a;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 1.4rem 0 0.5rem 0;
            color: #4d3f35;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
            color: #2a2520;
        }
        .post-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem;
            font-size: 0.95rem;
            color: #6b5e54;
            margin-bottom: 1.5rem;
            padding: 0.6rem 0;
        }
        .post-meta i {
            margin-right: 0.3rem;
        }
        .highlight-box {
            background: #fcf8f4;
            border-left: 6px solid #b7410e;
            padding: 1.6rem 2rem;
            border-radius: 12px;
            margin: 2rem 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        ul,
        ol {
            margin: 1rem 0 1.5rem 2rem;
        }
        li {
            margin-bottom: 0.5rem;
            font-size: 1.05rem;
        }
        .btn {
            display: inline-block;
            background: #b7410e;
            color: #fff;
            padding: 0.7rem 1.8rem;
            border-radius: 40px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: background 0.25s, transform 0.1s;
            font-size: 1rem;
        }
        .btn:hover {
            background: #7a2b08;
            transform: scale(0.97);
            text-decoration: none;
            color: #fff;
        }
        .search-section {
            background: #f4efe9;
            padding: 2rem 2rem;
            border-radius: 20px;
            margin: 2.5rem 0;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
            justify-content: center;
        }
        .search-section input {
            flex: 2 1 280px;
            padding: 0.9rem 1.4rem;
            border: 2px solid #ddd6ce;
            border-radius: 60px;
            font-size: 1rem;
            background: #fff;
            outline: none;
            transition: 0.2s;
        }
        .search-section input:focus {
            border-color: #b7410e;
            box-shadow: 0 0 0 4px rgba(183, 65, 14, 0.12);
        }
        .search-section .btn {
            flex: 0 1 auto;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2.5rem 0;
        }
        .feedback-card {
            background: #fcf9f6;
            padding: 1.8rem 2rem;
            border-radius: 20px;
            border: 1px solid #e8e0d6;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.4rem;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 0.8rem;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 0.8rem 1.2rem;
            border: 2px solid #ddd6ce;
            border-radius: 12px;
            font-size: 1rem;
            background: #fff;
            font-family: inherit;
            outline: none;
            transition: 0.2s;
            width: 100%;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #b7410e;
        }
        .feedback-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #e0d6cc;
            cursor: pointer;
            direction: rtl;
        }
        .rating-stars i {
            transition: color 0.2s, transform 0.1s;
        }
        .rating-stars i:hover,
        .rating-stars i:hover~i {
            color: #f5b342;
            transform: scale(1.1);
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            cursor: pointer;
            color: #e0d6cc;
            transition: 0.2s;
        }
        .rating-stars input:checked~label {
            color: #f5b342;
        }
        .rating-stars label:hover,
        .rating-stars label:hover~label {
            color: #f5b342;
        }
        friend-link {
            display: block;
            padding: 1.5rem 0;
            border-top: 2px solid #e8e0d6;
            margin-top: 2rem;
            font-style: normal;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 1.2rem 0.3rem 0;
            font-weight: 500;
        }
        .footer-copyright {
            padding: 1.2rem 0 0.8rem 0;
            text-align: center;
            font-size: 0.9rem;
            color: #6b5e54;
            border-top: 1px solid #e8e0d6;
            margin-top: 1rem;
        }
        @media (max-width: 768px) {
            .container {
                padding: 1rem 1.2rem;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .site-header {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0.8rem;
                padding: 1rem 0 0.5rem 0;
                background: #ffffff;
                border-top: 1px solid #e8e0d6;
                margin-top: 0.6rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                font-size: 1.1rem;
                padding: 0.4rem 0;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .search-section {
                flex-direction: column;
                padding: 1.5rem 1rem;
            }
            .search-section input {
                width: 100%;
            }
            .post-meta {
                flex-direction: column;
                gap: 0.3rem;
            }
            .my-logo {
                font-size: 1.7rem;
            }
        }
        @media (min-width: 769px) {
            .hamburger {
                display: none !important;
            }
            .main-nav {
                display: flex !important;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        .schema-wrap {
            display: none;
        }
