* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            background: #faf8f5;
            color: #1e1e1e;
            line-height: 1.7;
            padding: 0 20px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.04);
            border-radius: 28px;
            padding: 24px 32px 16px;
            margin-top: 20px;
            margin-bottom: 40px;
        }
        .header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0 12px;
            border-bottom: 2px solid #f0eade;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #d96c2b;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            font-size: 2rem;
            color: #2b3d4f;
        }
        .my-logo span {
            background: linear-gradient(145deg, #d96c2b, #b84e1a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .nav-wrap {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 18px;
            flex-wrap: wrap;
        }
        .nav-list a {
            text-decoration: none;
            color: #2b3d4f;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 6px 12px;
            border-radius: 60px;
            transition: all 0.2s;
        }
        .nav-list a:hover {
            background: #f0eade;
            color: #b84e1a;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #2b3d4f;
            cursor: pointer;
            padding: 4px 8px;
        }
        .breadcrumb {
            padding: 14px 0 10px;
            font-size: 0.85rem;
            color: #6b6b6b;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: #d96c2b;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            margin: 0 4px;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #1e2a36;
            margin: 24px 0 16px;
            line-height: 1.2;
            letter-spacing: -0.3px;
        }
        h1 i {
            color: #d96c2b;
            margin-right: 12px;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #1e2a36;
            margin: 40px 0 16px 0;
            padding-bottom: 8px;
            border-bottom: 3px solid #f0eade;
        }
        h2 i {
            color: #d96c2b;
            margin-right: 10px;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #2b3d4f;
            margin: 28px 0 12px 0;
        }
        h3 i {
            color: #b84e1a;
            margin-right: 8px;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #3a4d5e;
            margin: 20px 0 10px 0;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.02rem;
            color: #2c2c2c;
        }
        .content-img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            margin: 28px 0;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
            display: block;
        }
        .highlight {
            background: #fff3e6;
            padding: 2px 8px;
            border-radius: 6px;
            font-weight: 600;
        }
        .insight-box {
            background: #f6f2eb;
            border-left: 6px solid #d96c2b;
            padding: 20px 24px;
            border-radius: 16px;
            margin: 28px 0;
        }
        .insight-box i {
            color: #d96c2b;
            margin-right: 8px;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: #f8f5f0;
            border-radius: 20px;
            padding: 20px 16px;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
            transition: transform 0.2s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
        }
        .stat-card .num {
            font-size: 2.4rem;
            font-weight: 800;
            color: #d96c2b;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: #4a4a4a;
            margin-top: 4px;
        }
        .search-section {
            background: #f4efe8;
            border-radius: 24px;
            padding: 28px 30px;
            margin: 36px 0 28px;
        }
        .search-section h3 {
            margin-top: 0;
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }
        .search-form input {
            flex: 1 1 240px;
            padding: 14px 20px;
            border: 2px solid #ddd6cc;
            border-radius: 60px;
            font-size: 1rem;
            background: white;
            outline: none;
            transition: 0.2s;
        }
        .search-form input:focus {
            border-color: #d96c2b;
        }
        .search-form button {
            background: #d96c2b;
            color: white;
            border: none;
            padding: 14px 32px;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #b84e1a;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 38px 0 30px;
        }
        @media (max-width:700px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .comment-box,
        .score-box {
            background: #f8f5f0;
            border-radius: 24px;
            padding: 24px 26px;
        }
        .comment-box h3,
        .score-box h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .comment-box textarea,
        .score-box input,
        .score-box select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #ddd6cc;
            border-radius: 16px;
            font-size: 1rem;
            background: white;
            outline: none;
            transition: 0.2s;
            margin-bottom: 12px;
            font-family: inherit;
        }
        .comment-box textarea {
            min-height: 90px;
            resize: vertical;
        }
        .comment-box textarea:focus,
        .score-box input:focus,
        .score-box select:focus {
            border-color: #d96c2b;
        }
        .comment-box button,
        .score-box button {
            background: #2b3d4f;
            color: white;
            border: none;
            padding: 12px 28px;
            border-radius: 60px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .comment-box button:hover,
        .score-box button:hover {
            background: #1e2a36;
            transform: scale(1.02);
        }
        .score-stars {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #f0c674;
            margin-bottom: 12px;
            cursor: pointer;
        }
        .score-stars i {
            transition: 0.15s;
        }
        .score-stars i:hover,
        .score-stars i.active {
            color: #e8a84c;
            transform: scale(1.1);
        }
        .last-updated {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
            color: #6b6b6b;
            margin: 28px 0 10px;
            padding: 12px 0;
            border-top: 1px solid #f0eade;
        }
        .last-updated i {
            color: #d96c2b;
        }
        .footer {
            border-top: 2px solid #f0eade;
            padding: 28px 0 18px;
            margin-top: 40px;
        }
        .footer friend-link {
            display: block;
            background: #f8f5f0;
            padding: 18px 22px;
            border-radius: 20px;
            font-size: 0.95rem;
            margin-bottom: 18px;
        }
        .footer friend-link a {
            color: #d96c2b;
            text-decoration: none;
            margin: 0 8px 0 4px;
            display: inline-block;
        }
        .footer friend-link a:hover {
            text-decoration: underline;
        }
        .footer .copyright {
            font-size: 0.85rem;
            color: #6b6b6b;
            text-align: center;
            padding: 12px 0 4px;
        }
        .footer .copyright i {
            color: #d96c2b;
        }
        @media (max-width: 768px) {
            .container {
                padding: 16px 16px 10px;
                border-radius: 20px;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .header {
                flex-wrap: wrap;
            }
            .nav-wrap .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #ffffff;
                padding: 16px 0 10px;
                gap: 4px;
                border-top: 1px solid #f0eade;
                margin-top: 12px;
            }
            .nav-wrap .nav-list.open {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 10px;
            }
            .container {
                padding: 12px 12px 8px;
            }
            h1 {
                font-size: 1.6rem;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        a {
            color: #d96c2b;
        }
        a:hover {
            color: #b84e1a;
        }
        strong {
            font-weight: 700;
            color: #1e2a36;
        }
        em {
            font-style: italic;
            color: #4a3a2a;
        }
        ul,
        ol {
            margin: 16px 0 22px 24px;
        }
        li {
            margin-bottom: 8px;
        }
        hr {
            border: none;
            border-top: 2px dashed #f0eade;
            margin: 32px 0;
        }
