        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #f5f3f0;
            color: #1e1b1a;
            line-height: 1.7;
            padding: 0 16px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #b44a2e;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #7a2e1a;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #241c1a;
        }
        h1 {
            font-size: 2.2rem;
            margin: 0.5rem 0 1.2rem;
        }
        h2 {
            font-size: 1.75rem;
            margin: 2.4rem 0 0.9rem;
            border-left: 6px solid #b44a2e;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.35rem;
            margin: 1.8rem 0 0.6rem;
        }
        h4 {
            font-size: 1.1rem;
            margin: 1.2rem 0 0.4rem;
            font-weight: 600;
        }
        p {
            margin: 0 0 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #fffdfb;
            border-radius: 28px 28px 0 0;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.05);
            padding: 0 24px 40px;
        }
        header {
            padding: 20px 0 10px;
            border-bottom: 2px solid #f0e8e3;
        }
        .header-top {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #241c1a;
            background: linear-gradient(135deg, #b44a2e, #e07b4a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
            text-decoration: none;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.85;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            -webkit-text-fill-color: #7a6b64;
            color: #7a6b64;
            letter-spacing: 0.2px;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .nav-hamburger {
            display: none;
            font-size: 1.6rem;
            background: none;
            border: none;
            color: #241c1a;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-hamburger:hover {
            background: #f0e8e3;
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 4px 18px;
            list-style: none;
            padding: 0;
        }
        .nav-menu li a {
            font-weight: 500;
            font-size: 0.95rem;
            color: #3d2e28;
            padding: 4px 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
        }
        .nav-menu li a:hover {
            border-bottom-color: #b44a2e;
            color: #b44a2e;
            text-decoration: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px 10px;
            font-size: 0.85rem;
            color: #7a6b64;
            padding: 12px 0 6px;
            list-style: none;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #b8a9a0;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #7a6b64;
        }
        .breadcrumb a:hover {
            color: #b44a2e;
        }
        .breadcrumb .current {
            color: #241c1a;
            font-weight: 500;
        }
        .search-section {
            background: #faf6f2;
            border-radius: 20px;
            padding: 28px 24px;
            margin: 28px 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 16px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
        }
        .search-section label {
            font-weight: 600;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 8px;
            color: #3d2e28;
        }
        .search-form {
            display: flex;
            flex: 1 1 300px;
            gap: 8px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 18px;
            border: 2px solid #e0d6cf;
            border-radius: 40px;
            font-size: 1rem;
            background: #fff;
            transition: border-color 0.25s;
            outline: none;
        }
        .search-form input:focus {
            border-color: #b44a2e;
        }
        .search-form button {
            background: #b44a2e;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 12px 24px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #8f381f;
            transform: scale(0.97);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
        }
        @media (min-width: 900px) {
            .content-grid {
                grid-template-columns: 2fr 1fr;
            }
        }
        .main-article {
            padding-right: 12px;
        }
        .sidebar {
            padding-top: 2rem;
        }
        .sidebar .card {
            background: #faf6f2;
            border-radius: 20px;
            padding: 20px 18px;
            margin-bottom: 24px;
        }
        .sidebar .card h3 {
            margin-top: 0;
            font-size: 1.15rem;
            border-bottom: 2px solid #e0d6cf;
            padding-bottom: 8px;
        }
        .sidebar .card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar .card ul li {
            padding: 6px 0;
            border-bottom: 1px solid #eee6df;
        }
        .sidebar .card ul li a {
            font-weight: 500;
        }
        .featured-image {
            border-radius: 20px;
            overflow: hidden;
            margin: 1.6rem 0 2rem;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .featured-image figcaption {
            font-size: 0.85rem;
            color: #7a6b64;
            padding: 10px 16px;
            background: #faf6f2;
            font-style: italic;
        }
        .highlight-box {
            background: #fdf6f0;
            border-left: 6px solid #b44a2e;
            padding: 18px 22px;
            border-radius: 12px;
            margin: 1.6rem 0;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 16px;
            margin: 1.6rem 0;
        }
        .stat-item {
            background: #fffdfb;
            border: 1px solid #f0e8e3;
            border-radius: 16px;
            padding: 18px 12px;
            text-align: center;
        }
        .stat-item .num {
            font-size: 2rem;
            font-weight: 800;
            color: #b44a2e;
        }
        .stat-item .label {
            font-size: 0.85rem;
            color: #7a6b64;
            margin-top: 4px;
        }
        .interview-card {
            background: #faf6f2;
            border-radius: 20px;
            padding: 20px 22px;
            margin: 1.6rem 0;
            border: 1px solid #f0e8e3;
        }
        .interview-card .quote {
            font-style: italic;
            font-size: 1.05rem;
            color: #3d2e28;
            padding-left: 18px;
            border-left: 4px solid #b44a2e;
            margin: 12px 0;
        }
        .btn {
            display: inline-block;
            background: #b44a2e;
            color: #fff;
            padding: 10px 24px;
            border-radius: 40px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: background 0.25s, transform 0.1s;
            font-size: 0.95rem;
        }
        .btn:hover {
            background: #8f381f;
            transform: scale(0.97);
            text-decoration: none;
        }
        .btn-outline {
            background: transparent;
            color: #b44a2e;
            border: 2px solid #b44a2e;
        }
        .btn-outline:hover {
            background: #b44a2e;
            color: #fff;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 2.4rem 0;
        }
        @media (max-width: 640px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: #faf6f2;
            border-radius: 20px;
            padding: 24px 22px;
            border: 1px solid #f0e8e3;
        }
        .feedback-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 12px;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 12px 16px;
            border: 2px solid #e0d6cf;
            border-radius: 12px;
            font-size: 0.95rem;
            background: #fff;
            outline: none;
            transition: border-color 0.25s;
            font-family: inherit;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #b44a2e;
        }
        .feedback-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #d6ccc4;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f5b342;
        }
        footer {
            margin-top: 40px;
            padding: 32px 0 20px;
            border-top: 2px solid #f0e8e3;
        }
        footer .footer-flex {
            display: flex;
            flex-wrap: wrap;
            gap: 24px 40px;
            justify-content: space-between;
        }
        friend-link {
            display: block;
            padding: 12px 0;
        }
        friend-link ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 22px;
        }
        friend-link ul li a {
            font-weight: 500;
            font-size: 0.95rem;
        }
        .copyright {
            font-size: 0.85rem;
            color: #7a6b64;
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #f0e8e3;
            margin-top: 16px;
        }
        .last-update {
            font-size: 0.85rem;
            color: #7a6b64;
            text-align: right;
            margin-top: 4px;
        }
        @media (max-width: 768px) {
            .container {
                padding: 0 14px 28px;
                border-radius: 20px 20px 0 0;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .header-top {
                flex-wrap: wrap;
            }
            .nav-hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 12px 0 6px;
                gap: 0;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                display: block;
                padding: 10px 0;
                border-bottom: 1px solid #f0e8e3;
            }
            .search-section {
                flex-direction: column;
                align-items: stretch;
                padding: 20px 16px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                justify-content: center;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .sidebar {
                padding-top: 0;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .header-top .my-logo {
                font-size: 1.5rem;
            }
            h1 {
                font-size: 1.4rem;
            }
        }
        .text-small {
            font-size: 0.9rem;
            color: #7a6b64;
        }
        .mt-2 {
            margin-top: 1.2rem;
        }
        .mb-1 {
            margin-bottom: 0.6rem;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }
        .gap-2 {
            gap: 12px;
        }
        .rounded-full {
            border-radius: 999px;
        }
        .bg-soft {
            background: #faf6f2;
        }
        .p-4 {
            padding: 20px;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.2rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 10px 14px;
            border-bottom: 1px solid #f0e8e3;
            text-align: left;
        }
        th {
            background: #faf6f2;
            font-weight: 600;
            color: #3d2e28;
        }
        tr:hover td {
            background: #fdf8f4;
        }
