* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #f8f5f0;
            color: #1e1e1e;
            line-height: 1.7;
            padding: 0 16px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #fff;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.04);
            border-radius: 28px;
            padding: 20px 24px 40px;
            margin-top: 16px;
            margin-bottom: 40px;
        }
        a {
            color: #b45309;
            text-decoration: underline;
            text-underline-offset: 2px;
            transition: color 0.2s;
        }
        a:hover {
            color: #7c2d12;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 650;
            letter-spacing: -0.01em;
            line-height: 1.3;
            color: #1a1a2e;
        }
        h1 {
            font-size: 2.6rem;
            margin: 0.5em 0 0.3em;
            border-left: 6px solid #b45309;
            padding-left: 20px;
        }
        h2 {
            font-size: 2rem;
            margin: 1.8em 0 0.6em;
            border-bottom: 3px solid #e5e0d8;
            padding-bottom: 8px;
        }
        h3 {
            font-size: 1.5rem;
            margin: 1.4em 0 0.5em;
            color: #2d2d44;
        }
        h4 {
            font-size: 1.2rem;
            margin: 1em 0 0.4em;
            color: #3d3d5c;
        }
        p {
            margin-bottom: 1.2em;
            font-size: 1.05rem;
            color: #2a2a2a;
        }
        ul,
        ol {
            margin: 0.8em 0 1.4em 1.8em;
        }
        li {
            margin-bottom: 0.5em;
            font-size: 1.02rem;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            margin: 1.6em 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            display: block;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            text-decoration: none;
            color: #1a1a2e;
            letter-spacing: -0.5px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            color: #b45309;
            font-size: 2rem;
        }
        .my-logo:hover {
            color: #b45309;
        }
        .header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0 16px;
            border-bottom: 2px solid #efeae2;
            position: relative;
        }
        .nav-wrap {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-list {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 6px 14px;
            margin: 0;
            padding: 0;
        }
        .nav-list li a {
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 8px;
            border-radius: 40px;
            transition: background 0.2s, color 0.2s;
            color: #2d2d44;
        }
        .nav-list li a:hover {
            background: #b45309;
            color: #fff;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #1a1a2e;
            cursor: pointer;
            padding: 4px 8px;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 14px 0 6px;
            margin: 0;
            font-size: 0.9rem;
            color: #6b5e55;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 10px;
            color: #b45309;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #6b5e55;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: #b45309;
        }
        .breadcrumb .active {
            color: #1a1a2e;
            font-weight: 600;
        }
        .search-section {
            background: #f4efe8;
            border-radius: 60px;
            padding: 4px 4px 4px 20px;
            display: flex;
            align-items: center;
            max-width: 480px;
            margin: 24px 0 32px;
            border: 1px solid #ddd6cc;
        }
        .search-section input {
            flex: 1;
            border: none;
            background: transparent;
            padding: 14px 8px;
            font-size: 1rem;
            outline: none;
            font-family: inherit;
        }
        .search-section button {
            background: #b45309;
            border: none;
            color: #fff;
            padding: 12px 28px;
            border-radius: 60px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-section button:hover {
            background: #7c2d12;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 40px 0 20px;
        }
        .feedback-card {
            background: #faf8f5;
            border-radius: 24px;
            padding: 24px 28px;
            border: 1px solid #e5e0d8;
        }
        .feedback-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.3rem;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 12px 16px;
            border: 1px solid #d6cec4;
            border-radius: 40px;
            font-size: 0.95rem;
            font-family: inherit;
            background: #fff;
            outline: none;
            transition: border 0.2s;
        }
        .feedback-card textarea {
            border-radius: 20px;
            min-height: 80px;
            resize: vertical;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #b45309;
        }
        .feedback-card .btn {
            background: #1a1a2e;
            color: #fff;
            border: none;
            padding: 12px 24px;
            border-radius: 60px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            font-size: 0.95rem;
            align-self: flex-start;
        }
        .feedback-card .btn:hover {
            background: #b45309;
        }
        .rating-stars {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            font-size: 2rem;
            color: #d6cec4;
            cursor: pointer;
            transition: color 0.15s;
        }
        .rating-stars input:checked~label,
        .rating-stars label:hover,
        .rating-stars label:hover~label {
            color: #f59e0b;
        }
        friend-link {
            display: block;
            padding: 28px 0 16px;
            border-top: 2px solid #efeae2;
            margin-top: 40px;
        }
        friend-link .fl-head {
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 12px;
            color: #1a1a2e;
        }
        friend-link .fl-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 24px;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        friend-link .fl-list a {
            text-decoration: none;
            color: #6b5e55;
            font-size: 0.95rem;
        }
        friend-link .fl-list a:hover {
            color: #b45309;
        }
        .footer-bottom {
            padding: 20px 0 8px;
            font-size: 0.9rem;
            color: #6b5e55;
            text-align: center;
            border-top: 1px solid #e5e0d8;
            margin-top: 16px;
        }
        .footer-bottom .copy {
            font-weight: 500;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.8em 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.98rem;
            background: #faf8f5;
            border-radius: 16px;
            overflow: hidden;
        }
        th,
        td {
            padding: 14px 18px;
            text-align: left;
            border-bottom: 1px solid #e5e0d8;
        }
        th {
            background: #1a1a2e;
            color: #fff;
            font-weight: 600;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #f4efe8;
        }
        .highlight-box {
            background: #fdf8f0;
            border-left: 6px solid #b45309;
            padding: 20px 24px;
            border-radius: 16px;
            margin: 1.6em 0;
        }
        .emoji-big {
            font-size: 1.4em;
            margin-right: 4px;
        }
        .tag {
            display: inline-block;
            background: #e5e0d8;
            padding: 2px 14px;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #2d2d44;
        }
        .last-updated {
            display: inline-block;
            background: #1a1a2e;
            color: #fff;
            padding: 4px 18px;
            border-radius: 40px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 12px;
        }
        @media (max-width:768px) {
            .container {
                padding: 12px 14px 30px;
                border-radius: 16px;
                margin-top: 8px;
            }
            h1 {
                font-size: 1.9rem;
                padding-left: 14px;
                border-left-width: 4px;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .header {
                flex-wrap: wrap;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #fff;
                padding: 16px 0 8px;
                gap: 4px;
                border-top: 1px solid #efeae2;
                margin-top: 12px;
            }
            .nav-list.open {
                display: flex;
            }
            .nav-list li a {
                display: block;
                padding: 10px 12px;
                font-size: 1.05rem;
            }
            .hamburger {
                display: block;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .search-section {
                max-width: 100%;
                flex-wrap: wrap;
                border-radius: 40px;
                padding: 4px;
            }
            .search-section input {
                padding: 12px 14px;
                width: 100%;
            }
            .search-section button {
                width: 100%;
                justify-content: center;
                padding: 12px;
            }
            .table-wrap {
                font-size: 0.85rem;
            }
            th,
            td {
                padding: 10px 12px;
            }
            .my-logo {
                font-size: 1.6rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
        }
        @media (max-width:480px) {
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.35rem;
            }
            .container {
                padding: 8px 10px 20px;
            }
            .feedback-card {
                padding: 16px 18px;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        .nav-list li a.active-page {
            background: #b45309;
            color: #fff;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
            margin: 1.6em 0;
        }
        .feature-card {
            background: #faf8f5;
            padding: 20px 22px;
            border-radius: 20px;
            border: 1px solid #e5e0d8;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
        }
        .feature-card i {
            font-size: 2rem;
            color: #b45309;
            margin-bottom: 10px;
        }
        .feature-card h4 {
            margin-top: 0;
        }
        .interview-card {
            background: #f4efe8;
            border-radius: 20px;
            padding: 20px 24px;
            margin: 1.4em 0;
            border-left: 6px solid #b45309;
        }
        .interview-card .name {
            font-weight: 700;
            color: #1a1a2e;
        }
        .interview-card .role {
            font-size: 0.85rem;
            color: #6b5e55;
        }
        blockquote {
            font-style: italic;
            padding: 12px 20px;
            border-left: 4px solid #b45309;
            margin: 1em 0;
            background: #fcf9f5;
            border-radius: 8px;
            color: #2d2d44;
        }
        .faq-item {
            border-bottom: 1px solid #e5e0d8;
            padding: 14px 0;
        }
        .faq-item h4 {
            margin: 0 0 6px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-item h4::after {
            content: "\f078";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            font-size: 0.8rem;
            color: #b45309;
            transition: transform 0.2s;
        }
        .faq-item p {
            margin: 4px 0 0;
            color: #4a4a5a;
        }
        .strategy-list {
            counter-reset: strat;
        }
        .strategy-list li {
            counter-increment: strat;
            margin-bottom: 1em;
            list-style: none;
            padding-left: 2.2em;
            position: relative;
        }
        .strategy-list li::before {
            content: counter(strat);
            position: absolute;
            left: 0;
            top: 0;
            background: #b45309;
            color: #fff;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.85rem;
        }
