        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #f7f4f0;
            color: #222;
            line-height: 1.8;
            padding: 0 1rem;
            max-width: 1280px;
            margin: 0 auto;
        }
        a {
            color: #b45309;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #7c2d12;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.3;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
            color: #1e1e2a;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 4px solid #eab308;
            display: inline-block;
            padding-bottom: 0.4rem;
            margin-top: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 6px solid #eab308;
            padding-left: 1rem;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.4rem;
            margin-top: 2.2rem;
            color: #2d2d3f;
        }
        h4 {
            font-size: 1.15rem;
            margin-top: 1.6rem;
            color: #3b3b4f;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        ul,
        ol {
            margin: 1rem 0 1.5rem 2rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        strong {
            color: #a16207;
            font-weight: 700;
        }
        .container {
            background: #fff;
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
            padding: 1.5rem 2rem 2rem;
            margin: 1.5rem auto 3rem;
        }
        @media (max-width: 640px) {
            body {
                padding: 0 0.5rem;
            }
            .container {
                padding: 1rem 1rem 1.5rem;
                border-radius: 16px;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            h4 {
                font-size: 1rem;
            }
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 0 0.6rem;
            border-bottom: 2px solid #e6ddd4;
            position: relative;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #b45309, #eab308);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 8px rgba(180, 83, 9, 0.15);
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo small {
            font-size: 0.8rem;
            font-weight: 400;
            -webkit-text-fill-color: #6b5b4e;
            color: #6b5b4e;
            display: block;
            letter-spacing: 0.5px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 2rem;
            color: #4a3f35;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #f0e9e2;
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 0.2rem 1.2rem;
            align-items: center;
            list-style: none;
            margin: 0;
        }
        .nav-menu li a {
            font-weight: 600;
            color: #4a3f35;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
            font-size: 0.95rem;
        }
        .nav-menu li a:hover {
            border-bottom-color: #eab308;
            color: #b45309;
            text-decoration: none;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 1rem 0 0.5rem;
                gap: 0.6rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                font-size: 1.05rem;
                padding: 0.4rem 0;
            }
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0.75rem 0 0.2rem;
            font-size: 0.85rem;
            color: #7a6b5d;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #c0b2a4;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #7a6b5d;
        }
        .breadcrumb a:hover {
            color: #b45309;
        }
        .breadcrumb .active {
            color: #b45309;
            font-weight: 600;
        }
        .search-box {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin: 2rem 0 0.5rem;
            background: #f9f6f2;
            padding: 1.2rem 1.5rem;
            border-radius: 16px;
            border: 1px solid #e6ddd4;
        }
        .search-box label {
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #4a3f35;
        }
        .search-box input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.7rem 1rem;
            border: 2px solid #ddd2c8;
            border-radius: 30px;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.2s;
            background: #fff;
        }
        .search-box input[type="text"]:focus {
            border-color: #eab308;
        }
        .search-box button {
            background: #b45309;
            color: #fff;
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-box button:hover {
            background: #92400e;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin: 2.5rem 0 1rem;
        }
        @media (max-width: 640px) {
            .feedback-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }
        .card-form {
            background: #faf8f5;
            border-radius: 18px;
            padding: 1.5rem 1.8rem;
            border: 1px solid #e6ddd4;
        }
        .card-form h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 1.3rem;
        }
        .card-form label {
            font-weight: 600;
            display: block;
            margin: 1rem 0 0.3rem;
            color: #3b3b4f;
        }
        .card-form input,
        .card-form textarea,
        .card-form select {
            width: 100%;
            padding: 0.65rem 1rem;
            border: 2px solid #ddd2c8;
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: inherit;
            background: #fff;
            transition: border 0.2s;
            outline: none;
        }
        .card-form input:focus,
        .card-form textarea:focus,
        .card-form select:focus {
            border-color: #eab308;
        }
        .card-form textarea {
            resize: vertical;
            min-height: 90px;
        }
        .card-form button {
            margin-top: 1.2rem;
            background: #eab308;
            color: #1e1e2a;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .card-form button:hover {
            background: #d4a407;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 0.4rem;
            font-size: 1.8rem;
            color: #eab308;
            margin: 0.4rem 0 0.2rem;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            direction: ltr;
            cursor: pointer;
            transition: transform 0.1s;
            margin: 0;
            padding: 0 0.1rem;
        }
        .star-rating label:hover,
        .star-rating label:hover~label {
            transform: scale(1.15);
            color: #ca8a04;
        }
        .star-rating input:checked~label {
            color: #ca8a04;
        }
        .site-footer {
            border-top: 2px solid #e6ddd4;
            padding: 2rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 2rem;
            justify-content: center;
            margin-bottom: 1.2rem;
        }
        .footer-links a {
            font-size: 0.9rem;
            color: #6b5b4e;
        }
        .footer-links a:hover {
            color: #b45309;
        }
        .copyright {
            text-align: center;
            font-size: 0.85rem;
            color: #7a6b5d;
            border-top: 1px solid #ede7e1;
            padding-top: 1.2rem;
        }
        .copyright strong {
            color: #4a3f35;
        }
        friend-link {
            display: block;
            text-align: center;
            padding: 0.8rem 0 0.2rem;
            font-size: 0.9rem;
            color: #6b5b4e;
        }
        friend-link a {
            margin: 0 0.6rem;
        }
        .featured-img {
            margin: 2rem 0 2.5rem;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
        }
        .featured-img figcaption {
            background: #f9f6f2;
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            color: #5a4e40;
            border-bottom-left-radius: 18px;
            border-bottom-right-radius: 18px;
            border: 1px solid #e6ddd4;
            border-top: none;
        }
        .badge {
            display: inline-block;
            background: #eab308;
            color: #1e1e2a;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.15rem 0.8rem;
            border-radius: 30px;
            letter-spacing: 0.3px;
        }
        .divider {
            height: 4px;
            background: linear-gradient(90deg, #eab308, #b45309);
            border-radius: 4px;
            margin: 2.5rem 0;
            opacity: 0.3;
        }
        .list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.8rem;
            list-style: none;
            margin: 0.8rem 0 1.2rem;
        }
        .list-inline li::before {
            content: "◆";
            color: #eab308;
            margin-right: 0.5rem;
            font-size: 0.7rem;
        }
        @media (max-width: 480px) {
            .container {
                padding: 0.8rem;
            }
            .search-box {
                padding: 1rem;
            }
            .card-form {
                padding: 1.2rem;
            }
        }
        .schema-hidden {
            display: none;
        }
