*,
        *::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: #1e2a2f;
            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.04);
            border-radius: 28px 28px 0 0;
            padding: 20px 24px 40px;
        }
        header {
            padding: 20px 0 12px;
            border-bottom: 2px solid #e8e3da;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }
        .my-logo {
            font-size: 2.0rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: #b4450c;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #fff3e6;
            padding: 0 16px 0 12px;
            border-radius: 40px;
            line-height: 1.2;
            transition: 0.2s;
        }
        .my-logo:hover {
            background: #fce4d0;
            transform: scale(1.02);
        }
        .my-logo i {
            color: #d45a1a;
            font-size: 1.6rem;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 2.0rem;
            color: #1e2a2f;
            cursor: pointer;
            padding: 4px 12px;
            border-radius: 8px;
            transition: 0.2s;
        }
        .hamburger:hover {
            background: #f0ebe4;
        }
        nav {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px 16px;
        }
        nav a {
            color: #1e2a2f;
            text-decoration: none;
            font-weight: 500;
            padding: 6px 12px;
            border-radius: 30px;
            transition: 0.2s;
            font-size: 0.95rem;
        }
        nav a:hover {
            background: #b4450c;
            color: #fff;
        }
        .breadcrumb {
            width: 100%;
            margin-top: 12px;
            font-size: 0.85rem;
            color: #6f6b64;
            display: flex;
            flex-wrap: wrap;
            gap: 4px 8px;
            padding: 4px 0;
        }
        .breadcrumb a {
            color: #6f6b64;
            text-decoration: none;
            border-bottom: 1px dotted transparent;
        }
        .breadcrumb a:hover {
            border-bottom-color: #b4450c;
            color: #b4450c;
        }
        .breadcrumb span {
            color: #b4450c;
            font-weight: 500;
        }
        .search-block {
            margin: 28px 0 18px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            background: #f4f0ea;
            padding: 16px 20px;
            border-radius: 60px;
            align-items: center;
        }
        .search-block i {
            color: #b4450c;
            font-size: 1.2rem;
        }
        .search-block input {
            flex: 1;
            min-width: 180px;
            border: none;
            background: transparent;
            font-size: 1rem;
            padding: 8px 4px;
            outline: none;
            font-family: inherit;
        }
        .search-block button {
            background: #b4450c;
            color: #fff;
            border: none;
            padding: 10px 28px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: 0.2s;
        }
        .search-block button:hover {
            background: #8f3608;
            transform: scale(0.97);
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 28px 0 12px;
            color: #1e2a2f;
        }
        h1 span {
            color: #b4450c;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            margin: 52px 0 18px;
            padding-bottom: 8px;
            border-bottom: 4px solid #e8e3da;
            color: #1e2a2f;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin: 32px 0 12px;
            color: #2c3e44;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 24px 0 8px;
            color: #3d535a;
        }
        p {
            margin: 0 0 20px;
            font-size: 1.05rem;
            color: #2a373d;
        }
        .hero-img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
            border-radius: 24px;
            margin: 30px 0 24px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            background: #e8e3da;
        }
        .highlight {
            background: #fef7e9;
            padding: 4px 10px;
            border-radius: 20px;
            font-weight: 600;
            color: #b4450c;
        }
        .insight-box {
            background: #f4f0ea;
            border-left: 6px solid #b4450c;
            padding: 20px 24px;
            border-radius: 16px;
            margin: 28px 0;
        }
        .insight-box i {
            color: #b4450c;
            margin-right: 10px;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: #fff6ed;
            padding: 20px 16px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
        }
        .stat-card .num {
            font-size: 2.4rem;
            font-weight: 800;
            color: #b4450c;
            display: block;
        }
        .stat-card .label {
            font-size: 0.95rem;
            color: #4d5f66;
            font-weight: 500;
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            margin: 16px 0 24px;
        }
        .link-list a {
            background: #f4f0ea;
            padding: 4px 16px;
            border-radius: 40px;
            font-size: 0.92rem;
            color: #1e2a2f;
            text-decoration: none;
            transition: 0.2s;
        }
        .link-list a:hover {
            background: #b4450c;
            color: #fff;
        }
        blockquote {
            font-style: italic;
            border-left: 4px solid #b4450c;
            padding: 12px 20px;
            margin: 24px 0;
            background: #faf7f2;
            border-radius: 0 16px 16px 0;
            color: #2a373d;
        }
        blockquote footer {
            margin-top: 6px;
            font-weight: 500;
            color: #6f6b64;
        }
        .interview-card {
            background: #f9f5ef;
            border-radius: 24px;
            padding: 24px;
            margin: 28px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: flex-start;
        }
        .interview-card .avatar {
            font-size: 3.6rem;
            color: #b4450c;
            background: #e8e3da;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .interview-card .content {
            flex: 1;
            min-width: 200px;
        }
        .interview-card .content p {
            margin-bottom: 10px;
        }
        .feedback-section {
            margin: 52px 0 28px;
            padding: 28px 24px;
            background: #faf7f2;
            border-radius: 28px;
        }
        .feedback-section h2 {
            margin-top: 0;
            border-bottom-color: #b4450c;
        }
        .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin: 16px 0;
        }
        .form-row input,
        .form-row textarea,
        .form-row select {
            flex: 1 1 200px;
            padding: 14px 18px;
            border: 2px solid #e0d9d0;
            border-radius: 50px;
            font-size: 1rem;
            background: #fff;
            font-family: inherit;
            transition: 0.2s;
        }
        .form-row textarea {
            border-radius: 24px;
            min-height: 90px;
            resize: vertical;
            flex-basis: 100%;
        }
        .form-row input:focus,
        .form-row textarea:focus {
            border-color: #b4450c;
            outline: none;
        }
        .form-row button {
            background: #b4450c;
            color: #fff;
            border: none;
            padding: 14px 40px;
            border-radius: 60px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
        }
        .form-row button:hover {
            background: #8f3608;
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            align-items: center;
            font-size: 1.8rem;
            color: #d4c9bc;
            cursor: pointer;
        }
        .rating-stars i.active {
            color: #e8a838;
        }
        .rating-stars i:hover {
            color: #e8a838;
        }
        footer {
            margin-top: 48px;
            padding: 32px 0 20px;
            border-top: 2px solid #e8e3da;
        }
        friend-link {
            display: block;
            padding: 16px 0;
            font-style: normal;
        }
        friend-link a {
            display: inline-block;
            background: #f4f0ea;
            padding: 6px 20px;
            border-radius: 40px;
            color: #1e2a2f;
            text-decoration: none;
            margin: 4px 8px 4px 0;
            font-size: 0.95rem;
            transition: 0.2s;
        }
        friend-link a:hover {
            background: #b4450c;
            color: #fff;
        }
        .copyright {
            text-align: center;
            color: #6f6b64;
            font-size: 0.9rem;
            padding-top: 12px;
            border-top: 1px solid #e0d9d0;
        }
        .copyright strong {
            color: #2a373d;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 8px;
            }
            .container {
                padding: 12px 14px 30px;
                border-radius: 20px 20px 0 0;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .my-logo {
                font-size: 1.5rem;
                padding: 0 12px 0 8px;
            }
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 16px 0 8px;
                gap: 4px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 10px 16px;
                width: 100%;
                border-radius: 12px;
            }
            .search-block {
                border-radius: 30px;
                padding: 12px 16px;
            }
            .search-block button {
                padding: 8px 18px;
                font-size: 0.85rem;
            }
            .stat-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .interview-card {
                flex-direction: column;
            }
            .feedback-section {
                padding: 18px 14px;
            }
            .form-row input,
            .form-row textarea {
                flex-basis: 100%;
            }
            .rating-stars {
                font-size: 1.4rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
        }
        @media (max-width: 480px) {
            .stat-grid {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
        }
        @media (min-width: 769px) {
            .hamburger {
                display: none !important;
            }
            nav {
                display: flex !important;
            }
        }
        .last-updated {
            font-size: 0.85rem;
            color: #6f6b64;
            text-align: right;
            margin-top: -8px;
            margin-bottom: 20px;
        }
        .last-updated i {
            margin-right: 4px;
        }
        .btn-small {
            background: #e8e3da;
            border: none;
            padding: 4px 16px;
            border-radius: 30px;
            font-size: 0.85rem;
            cursor: pointer;
            transition: 0.2s;
        }
        .btn-small:hover {
            background: #b4450c;
            color: #fff;
        }
