        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f8f6f2;
            color: #1e1e2a;
            line-height: 1.7;
            padding: 0 1rem;
        }
        a {
            color: #b45309;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus-visible {
            color: #7c2d12;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        hr {
            border: none;
            border-top: 2px dashed #d6d3cd;
            margin: 2.5rem 0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        h1 {
            font-size: 2.4rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 1.8rem 0 1rem;
            color: #1a1a2e;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin: 2.5rem 0 1rem;
            color: #1e1e2a;
            border-left: 6px solid #b45309;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.35rem;
            font-weight: 600;
            margin: 1.8rem 0 0.8rem;
            color: #2d2d3f;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 1.4rem 0 0.6rem;
            color: #3d3d4f;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 400;
            color: #3d3d4f;
            background: #edeae4;
            padding: 1.2rem 1.8rem;
            border-radius: 16px;
            border-left: 6px solid #b45309;
        }
        strong {
            color: #1a1a2e;
            font-weight: 700;
        }
        .highlight {
            background: linear-gradient(120deg, #fde68a 0%, #fde68a 40%, transparent 80%);
            padding: 0.1rem 0.4rem;
            border-radius: 4px;
        }
        .emoji-big {
            font-size: 1.6rem;
            vertical-align: middle;
            margin-right: 0.3rem;
        }
        header {
            padding: 1.2rem 0 0.6rem;
        }
        .header-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 0.8rem 1.5rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            background: linear-gradient(135deg, #b45309, #d97706);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #b45309;
            font-size: 1.7rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #b45309;
            border-radius: 8px;
            padding: 0.4rem 0.7rem;
            font-size: 1.5rem;
            color: #b45309;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #b45309;
            color: #fff;
        }
        #nav-check {
            display: none;
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 1rem;
            list-style: none;
            align-items: center;
        }
        .nav-menu li a {
            padding: 0.4rem 0.8rem;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #2d2d3f;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .nav-menu li a:hover,
        .nav-menu li a:focus-visible {
            background: #b45309;
            color: #fff;
            text-decoration: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.4rem 0.8rem;
            padding: 0.8rem 0 0.4rem;
            font-size: 0.9rem;
            color: #6b7280;
            border-bottom: 1px solid #e5e0d8;
            margin-bottom: 0.8rem;
        }
        .breadcrumb a {
            color: #6b7280;
        }
        .breadcrumb a:hover {
            color: #b45309;
        }
        .breadcrumb .sep {
            color: #a19b92;
        }
        .breadcrumb .current {
            color: #1e1e2a;
            font-weight: 600;
        }
        .search-section {
            background: #edeae4;
            border-radius: 20px;
            padding: 1.8rem 2rem;
            margin: 2rem 0 2.5rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
        }
        .search-section h2 {
            border-left: none;
            padding-left: 0;
            margin-top: 0;
            font-size: 1.5rem;
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-top: 0.8rem;
        }
        .search-form input {
            flex: 1 1 260px;
            padding: 0.8rem 1.2rem;
            border: 2px solid #d6d3cd;
            border-radius: 40px;
            font-size: 1rem;
            background: #fff;
            transition: 0.2s;
        }
        .search-form input:focus {
            border-color: #b45309;
            outline: none;
            box-shadow: 0 0 0 4px rgba(180, 83, 9, 0.15);
        }
        .search-form button {
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 40px;
            background: #b45309;
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #7c2d12;
            transform: scale(1.02);
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.8rem;
            margin: 2rem 0;
        }
        .card {
            background: #fff;
            border-radius: 20px;
            padding: 1.8rem 1.5rem;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
            transition: transform 0.2s, box-shadow 0.2s;
            border: 1px solid #edeae4;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
        }
        .card i {
            font-size: 2rem;
            color: #b45309;
            margin-bottom: 0.8rem;
        }
        .card h3 {
            margin-top: 0;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.8rem 0;
            font-size: 0.98rem;
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .data-table th {
            background: #1e1e2a;
            color: #fff;
            padding: 0.9rem 1.2rem;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 0.8rem 1.2rem;
            border-bottom: 1px solid #edeae4;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #f8f6f2;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin: 2.5rem 0;
        }
        .feedback-card {
            background: #fff;
            border-radius: 20px;
            padding: 1.8rem 1.8rem 2.2rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #edeae4;
        }
        .feedback-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 0.8rem;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 0.7rem 1rem;
            border: 2px solid #d6d3cd;
            border-radius: 12px;
            font-size: 0.95rem;
            background: #faf9f7;
            transition: 0.2s;
            width: 100%;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #b45309;
            outline: none;
            box-shadow: 0 0 0 4px rgba(180, 83, 9, 0.1);
        }
        .feedback-card textarea {
            min-height: 90px;
            resize: vertical;
        }
        .feedback-card button {
            padding: 0.8rem 1.6rem;
            border: none;
            border-radius: 40px;
            background: #b45309;
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            align-self: flex-start;
        }
        .feedback-card button:hover {
            background: #7c2d12;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.25rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.6rem;
            color: #d6d3cd;
            cursor: pointer;
            transition: 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f59e0b;
        }
        .feature-img-wrapper {
            margin: 2.2rem 0;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
        }
        .feature-img-wrapper img {
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
        }
        .img-caption {
            padding: 0.8rem 1.2rem;
            background: #edeae4;
            font-size: 0.9rem;
            color: #4b4b5a;
            font-style: italic;
        }
        .interview-block {
            background: #1e1e2a;
            color: #f0ede8;
            border-radius: 20px;
            padding: 2rem 2.2rem;
            margin: 2.5rem 0;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
        }
        .interview-block h3 {
            color: #fde68a;
            margin-top: 0;
        }
        .interview-block p {
            color: #e5e0d8;
        }
        .interview-block strong {
            color: #fde68a;
        }
        .interview-block .q {
            color: #ffd966;
            font-weight: 600;
        }
        .interview-block .a {
            color: #e5e0d8;
        }
        footer {
            margin-top: 4rem;
            padding: 2.5rem 0 1.5rem;
            border-top: 2px solid #e5e0d8;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }
        friend-link {
            display: block;
            background: #edeae4;
            border-radius: 16px;
            padding: 1.5rem 1.8rem;
            margin: 1.5rem 0 2rem;
            font-style: normal;
        }
        friend-link a {
            display: inline-block;
            margin: 0.25rem 1rem 0.25rem 0;
            padding: 0.3rem 0.8rem;
            background: #fff;
            border-radius: 30px;
            font-size: 0.95rem;
            border: 1px solid #d6d3cd;
            transition: 0.2s;
        }
        friend-link a:hover {
            background: #b45309;
            color: #fff;
            border-color: #b45309;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 1.2rem;
            font-size: 0.9rem;
            color: #6b7280;
            border-top: 1px solid #e5e0d8;
            margin-top: 1.2rem;
        }
        .copyright strong {
            color: #1e1e2a;
        }
        .last-updated {
            display: inline-block;
            background: #edeae4;
            padding: 0.4rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #6b7280;
            margin-bottom: 1.2rem;
        }
        .last-updated i {
            margin-right: 0.4rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #fff;
                padding: 1.2rem 1rem;
                border-radius: 16px;
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
                margin-top: 0.4rem;
                border: 1px solid #edeae4;
            }
            #nav-check:checked~.nav-menu {
                display: flex;
            }
            .nav-menu li a {
                padding: 0.6rem 1rem;
                width: 100%;
                border-radius: 12px;
            }
            .header-inner {
                align-items: center;
            }
            .search-section {
                padding: 1.2rem 1.2rem;
            }
            .interview-block {
                padding: 1.5rem 1.2rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .data-table {
                font-size: 0.85rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.6rem 0.8rem;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 0.6rem;
            }
            .container {
                padding: 0 0.4rem;
            }
            h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .search-form input,
            .search-form button {
                width: 100%;
                flex: 1 1 100%;
            }
        }
        @media (min-width: 769px) {
            .nav-toggle {
                display: none !important;
            }
            #nav-check {
                display: none !important;
            }
            .nav-menu {
                display: flex !important;
            }
        }
        .skip-link {
            position: absolute;
            top: -100px;
            left: 0;
            background: #b45309;
            color: #fff;
            padding: 0.6rem 1.2rem;
            z-index: 1000;
            border-radius: 0 0 12px 0;
            font-weight: 600;
        }
        .skip-link:focus {
            top: 0;
        }
