* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f7f4f0;
            color: #2d2a26;
            line-height: 1.7;
            padding: 0 16px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.06);
            border-radius: 24px;
            padding: 20px 28px;
            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 #e8e0d8;
            position: relative;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 800;
            text-decoration: none;
            color: #c77d1e;
            letter-spacing: -0.5px;
            background: linear-gradient(145deg, #c77d1e, #a05f12);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            -webkit-text-fill-color: #c77d1e;
            font-size: 32px;
        }
        .my-logo:hover {
            opacity: 0.85;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 28px;
            color: #2d2a26;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #f0e8e0;
        }
        .navbar {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            align-items: center;
        }
        .navbar a {
            text-decoration: none;
            color: #2d2a26;
            font-weight: 500;
            font-size: 15px;
            padding: 6px 12px;
            border-radius: 40px;
            transition: all 0.2s;
        }
        .navbar a:hover {
            background: #c77d1e18;
            color: #c77d1e;
        }
        .navbar a.active {
            background: #c77d1e;
            color: #fff;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 14px 0 6px;
            font-size: 13px;
            color: #6b5e54;
            width: 100%;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 10px;
            color: #b5a89e;
            font-size: 18px;
        }
        .breadcrumb a {
            color: #6b5e54;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: #c77d1e;
            text-decoration: underline;
        }
        .breadcrumb li:last-child {
            color: #2d2a26;
            font-weight: 500;
        }
        .content {
            padding: 24px 0 32px;
        }
        h1 {
            font-size: 38px;
            font-weight: 800;
            color: #1f1b17;
            margin-bottom: 12px;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }
        h1 i {
            color: #c77d1e;
            margin-right: 10px;
        }
        .last-updated {
            display: block;
            font-size: 14px;
            color: #8a7a6e;
            margin-bottom: 28px;
            border-left: 4px solid #c77d1e;
            padding-left: 16px;
            background: #faf6f2;
            padding: 10px 18px;
            border-radius: 0 12px 12px 0;
        }
        .last-updated i {
            margin-right: 6px;
            color: #c77d1e;
        }
        h2 {
            font-size: 28px;
            font-weight: 700;
            color: #1f1b17;
            margin-top: 44px;
            margin-bottom: 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid #f0e8e0;
            position: relative;
        }
        h2::after {
            content: "";
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 80px;
            height: 3px;
            background: #c77d1e;
            border-radius: 4px;
        }
        h3 {
            font-size: 22px;
            font-weight: 600;
            color: #2d2a26;
            margin-top: 32px;
            margin-bottom: 10px;
        }
        h3 i {
            color: #c77d1e;
            margin-right: 8px;
        }
        h4 {
            font-size: 18px;
            font-weight: 600;
            color: #3d3732;
            margin-top: 24px;
            margin-bottom: 8px;
        }
        p {
            margin-bottom: 18px;
            font-size: 16px;
            color: #2d2a26;
        }
        .content-img {
            width: 100%;
            max-width: 840px;
            height: auto;
            border-radius: 20px;
            margin: 24px 0 20px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            display: block;
        }
        .highlight-box {
            background: #faf6f2;
            border-left: 6px solid #c77d1e;
            padding: 20px 24px;
            border-radius: 0 16px 16px 0;
            margin: 24px 0;
        }
        .highlight-box strong {
            color: #a05f12;
        }
        ul,
        ol {
            margin: 12px 0 22px 24px;
        }
        li {
            margin-bottom: 8px;
            font-size: 16px;
        }
        .tip-card {
            background: #fdfbf9;
            border: 1px solid #e8e0d8;
            border-radius: 16px;
            padding: 20px 24px;
            margin: 20px 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
            transition: transform 0.2s;
        }
        .tip-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
        }
        .tip-card h4 {
            margin-top: 0;
        }
        .tip-card h4 i {
            color: #c77d1e;
            margin-right: 8px;
        }
        .interview-block {
            background: #1f1b17;
            color: #f0ebe6;
            border-radius: 20px;
            padding: 28px 32px;
            margin: 28px 0;
        }
        .interview-block p {
            color: #e8e0d8;
        }
        .interview-block strong {
            color: #f5c78a;
        }
        .interview-block .quote {
            font-style: italic;
            font-size: 18px;
            border-left: 4px solid #c77d1e;
            padding-left: 20px;
            margin: 16px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 16px;
            margin: 24px 0;
        }
        .stat-item {
            background: #faf6f2;
            border-radius: 16px;
            padding: 20px 16px;
            text-align: center;
        }
        .stat-item .num {
            font-size: 32px;
            font-weight: 800;
            color: #c77d1e;
        }
        .stat-item .label {
            font-size: 14px;
            color: #6b5e54;
            margin-top: 4px;
        }
        a {
            color: #c77d1e;
            text-decoration: underline;
            text-underline-offset: 2px;
            transition: color 0.2s;
        }
        a:hover {
            color: #a05f12;
        }
        .search-section {
            background: #faf6f2;
            border-radius: 20px;
            padding: 28px 32px;
            margin: 40px 0 20px;
        }
        .search-section h3 {
            margin-top: 0;
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 12px;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: 2px solid #e0d6cc;
            border-radius: 40px;
            font-size: 16px;
            outline: none;
            transition: border 0.3s;
            background: #fff;
        }
        .search-form input[type="text"]:focus {
            border-color: #c77d1e;
        }
        .search-form button {
            padding: 14px 32px;
            background: #c77d1e;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
        }
        .search-form button:hover {
            background: #a05f12;
            transform: scale(1.02);
        }
        .rating-section {
            background: #fdfbf9;
            border: 1px solid #e8e0d8;
            border-radius: 20px;
            padding: 28px 32px;
            margin: 32px 0;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            margin: 12px 0 16px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 32px;
            color: #d4ccc4;
            cursor: pointer;
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5b342;
            transform: scale(1.05);
        }
        .rating-form button {
            padding: 12px 32px;
            background: #1f1b17;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        .rating-form button:hover {
            background: #3d3732;
        }
        .comments-section {
            background: #faf6f2;
            border-radius: 20px;
            padding: 28px 32px;
            margin: 32px 0;
        }
        .comments-section textarea {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid #e0d6cc;
            border-radius: 16px;
            font-size: 15px;
            resize: vertical;
            min-height: 110px;
            outline: none;
            transition: border 0.3s;
            font-family: inherit;
            background: #fff;
        }
        .comments-section textarea:focus {
            border-color: #c77d1e;
        }
        .comments-section .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 12px;
            align-items: center;
        }
        .comments-section .form-row input {
            flex: 1;
            min-width: 180px;
            padding: 12px 18px;
            border: 2px solid #e0d6cc;
            border-radius: 40px;
            font-size: 15px;
            outline: none;
            transition: border 0.3s;
            background: #fff;
        }
        .comments-section .form-row input:focus {
            border-color: #c77d1e;
        }
        .comments-section .form-row button {
            padding: 12px 32px;
            background: #c77d1e;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        .comments-section .form-row button:hover {
            background: #a05f12;
        }
        friend-link {
            display: block;
            padding: 20px 0 12px;
            border-top: 2px solid #e8e0d8;
            margin-top: 20px;
            font-size: 15px;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 16px 4px 0;
            text-decoration: none;
            font-weight: 500;
        }
        friend-link a:hover {
            text-decoration: underline;
        }
        .footer {
            padding: 20px 0 12px;
            border-top: 2px solid #e8e0d8;
            margin-top: 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
            color: #6b5e54;
        }
        .footer .copy {
            font-weight: 400;
        }
        .footer a {
            color: #6b5e54;
            text-decoration: none;
        }
        .footer a:hover {
            color: #c77d1e;
            text-decoration: underline;
        }
        @media (max-width: 820px) {
            .container {
                padding: 14px 16px;
                margin-top: 12px;
                border-radius: 18px;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 22px;
            }
            h3 {
                font-size: 19px;
            }
            .header {
                padding: 10px 0 8px;
            }
            .my-logo {
                font-size: 22px;
            }
            .nav-toggle {
                display: block;
                order: 2;
            }
            .navbar {
                display: none;
                width: 100%;
                order: 3;
                flex-direction: column;
                align-items: stretch;
                padding: 12px 0 8px;
                gap: 4px;
            }
            .navbar.open {
                display: flex;
            }
            .navbar a {
                padding: 10px 16px;
                border-radius: 12px;
                font-size: 16px;
            }
            .breadcrumb {
                font-size: 12px;
                padding: 10px 0 4px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input[type="text"] {
                min-width: auto;
            }
            .interview-block {
                padding: 20px 18px;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .rating-section,
            .comments-section,
            .search-section {
                padding: 20px 18px;
            }
            .star-rating label {
                font-size: 28px;
            }
            .footer {
                flex-direction: column;
                gap: 8px;
                text-align: center;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 8px;
            }
            .container {
                padding: 10px 12px;
                border-radius: 14px;
            }
            h1 {
                font-size: 24px;
            }
            h2 {
                font-size: 20px;
            }
            h3 {
                font-size: 17px;
            }
            .my-logo {
                font-size: 19px;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .stat-item .num {
                font-size: 26px;
            }
            .highlight-box {
                padding: 14px 16px;
            }
        }
