        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #faf8f5;
            color: #1e2a2f;
            line-height: 1.7;
            padding: 0 1rem;
        }
        a {
            color: #b5651e;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #8c4b13;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #1a2a2f;
            margin-top: 0;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 0.75rem;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 1.8rem;
            margin-top: 2.8rem;
            margin-bottom: 1rem;
            border-bottom: 3px solid #e6d5b8;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.35rem;
            margin-top: 2rem;
            margin-bottom: 0.6rem;
            color: #2e3f45;
        }
        h4 {
            font-size: 1.1rem;
            margin-top: 1.5rem;
            margin-bottom: 0.4rem;
            color: #3d5158;
        }
        p {
            margin-bottom: 1.2rem;
        }
        ul,
        ol {
            margin: 0.8rem 0 1.4rem 1.8rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        strong,
        b {
            color: #1a2a2f;
        }
        blockquote {
            border-left: 5px solid #b5651e;
            background: #f1ebe2;
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 10px 10px 0;
            font-style: italic;
            color: #2c3e44;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 0.5rem;
        }
        .site-header {
            background: linear-gradient(145deg, #1a2a2f 0%, #0f1b1f 100%);
            padding: 0.8rem 1.2rem;
            border-radius: 0 0 20px 20px;
            margin-bottom: 1.8rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            color: #f5e7d3;
            letter-spacing: -0.03em;
            background: linear-gradient(135deg, #f5e7d3, #dbb88c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.2s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #dbb88c;
            margin-right: 0.3rem;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.7rem;
            color: #f5e7d3;
            cursor: pointer;
            padding: 0.2rem 0.5rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.6rem;
            align-items: center;
        }
        .main-nav a {
            color: #e3d5c4;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
        }
        .main-nav a:hover {
            border-bottom-color: #dbb88c;
            color: #fff;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 0.3rem;
            color: #dbb88c;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0.6rem 0;
            margin: 0 0 1.2rem 0;
            font-size: 0.9rem;
            color: #6a7a80;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.5rem;
            color: #b5651e;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #6a7a80;
        }
        .breadcrumb a:hover {
            color: #b5651e;
        }
        .breadcrumb .active {
            color: #1e2a2f;
            font-weight: 600;
        }
        .search-section {
            background: #f1ebe2;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin: 2rem 0 2.5rem;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            max-width: 680px;
            margin: 0 auto;
        }
        .search-form input[type="text"] {
            flex: 1 1 240px;
            padding: 0.85rem 1.2rem;
            border: 2px solid #d6c9b8;
            border-radius: 40px;
            font-size: 1rem;
            background: #fffdfa;
            transition: border-color 0.3s, box-shadow 0.3s;
            outline: none;
        }
        .search-form input[type="text"]:focus {
            border-color: #b5651e;
            box-shadow: 0 0 0 4px rgba(181, 101, 30, 0.12);
        }
        .search-form button {
            padding: 0.85rem 2.2rem;
            background: #b5651e;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #8c4b13;
            transform: translateY(-2px);
        }
        .hero-img-wrapper {
            margin: 2rem 0 2.5rem;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 6px 28px rgba(0, 0, 0, 0.08);
            background: #e6d5b8;
        }
        .hero-img-wrapper img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .feedback-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 3rem 0 2.5rem;
        }
        @media (max-width: 700px) {
            .feedback-section {
                grid-template-columns: 1fr;
                gap: 1.8rem;
            }
        }
        .feedback-card {
            background: #fffdfa;
            border-radius: 18px;
            padding: 1.8rem 2rem;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
            border: 1px solid #ede5da;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .feedback-card h3 i {
            color: #b5651e;
        }
        .feedback-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 0.8rem;
        }
        .feedback-form textarea,
        .feedback-form input,
        .feedback-form select {
            padding: 0.75rem 1rem;
            border: 2px solid #ddd2c4;
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: inherit;
            background: #fffdfa;
            transition: border-color 0.3s, box-shadow 0.3s;
            outline: none;
        }
        .feedback-form textarea:focus,
        .feedback-form input:focus,
        .feedback-form select:focus {
            border-color: #b5651e;
            box-shadow: 0 0 0 4px rgba(181, 101, 30, 0.08);
        }
        .feedback-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-form .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.3rem;
        }
        .feedback-form .star-rating input {
            display: none;
        }
        .feedback-form .star-rating label {
            font-size: 1.8rem;
            color: #ddd2c4;
            cursor: pointer;
            transition: color 0.2s;
        }
        .feedback-form .star-rating input:checked~label,
        .feedback-form .star-rating label:hover,
        .feedback-form .star-rating label:hover~label {
            color: #f5b342;
        }
        .feedback-form .btn-submit {
            padding: 0.8rem 1.8rem;
            background: #b5651e;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            align-self: flex-start;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .feedback-form .btn-submit:hover {
            background: #8c4b13;
            transform: translateY(-2px);
        }
        .last-updated {
            display: inline-block;
            font-size: 0.9rem;
            color: #6a7a80;
            background: #f1ebe2;
            padding: 0.3rem 1rem;
            border-radius: 30px;
            margin-bottom: 1.2rem;
        }
        .last-updated i {
            margin-right: 0.4rem;
            color: #b5651e;
        }
        .site-footer {
            background: #1a2a2f;
            color: #d6c9b8;
            padding: 2.2rem 1.8rem 1.5rem;
            border-radius: 20px 20px 0 0;
            margin-top: 3.5rem;
        }
        .site-footer a {
            color: #dbb88c;
        }
        .site-footer a:hover {
            color: #f5e7d3;
            text-decoration: underline;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        @media (max-width: 700px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }
        .footer-grid h4 {
            color: #f5e7d3;
            margin-top: 0;
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }
        .footer-grid ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-grid ul li {
            margin-bottom: 0.4rem;
        }
        .footer-bottom {
            border-top: 1px solid #2e4046;
            padding-top: 1.2rem;
            margin-top: 1.8rem;
            text-align: center;
            font-size: 0.9rem;
            color: #8a9a9f;
        }
        friend-link {
            display: block;
            margin-top: 0.6rem;
            font-size: 0.95rem;
        }
        friend-link a {
            margin: 0 0.3rem;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0.4rem;
                padding-top: 1rem;
                border-top: 1px solid rgba(255, 255, 255, 0.08);
                margin-top: 0.6rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 0.4rem;
                font-size: 1rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.45rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .site-header {
                padding: 0.6rem 1rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .search-section {
                padding: 1.2rem 1rem;
            }
            .feedback-card {
                padding: 1.2rem 1.2rem;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 0.6rem;
            }
            .search-form input[type="text"] {
                flex: 1 1 100%;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .feedback-form .btn-submit {
                width: 100%;
                justify-content: center;
            }
        }
        .text-muted {
            color: #6a7a80;
            font-size: 0.92rem;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-icon {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .score-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.2rem 0 1.8rem;
            background: #fffdfa;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
        }
        .score-table th {
            background: #1a2a2f;
            color: #f5e7d3;
            padding: 0.7rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .score-table td {
            padding: 0.6rem 1rem;
            border-bottom: 1px solid #ede5da;
        }
        .score-table tr:last-child td {
            border-bottom: none;
        }
        .score-table tr:hover td {
            background: #f6f0e8;
        }
        .interview-card {
            background: #fffdfa;
            border-radius: 18px;
            padding: 1.8rem 2rem;
            margin: 1.8rem 0;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
            border-left: 6px solid #b5651e;
        }
        .interview-card .quote {
            font-style: italic;
            font-size: 1.05rem;
            color: #2c3e44;
        }
        .interview-card .attribution {
            margin-top: 0.8rem;
            font-weight: 600;
            color: #1a2a2f;
        }
