        *,
        *::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, sans-serif;
            background: #faf8f5;
            color: #1e1e2a;
            line-height: 1.75;
            padding: 0 1rem;
        }
        a {
            color: #b45309;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus {
            color: #7b341e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #1e1e2a;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 1.8rem;
            margin-top: 3rem;
            margin-bottom: 0.75rem;
            border-left: 5px solid #b45309;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.35rem;
            margin-top: 2rem;
            margin-bottom: 0.5rem;
            color: #2d2d3f;
        }
        h4 {
            font-size: 1.1rem;
            margin-top: 1.5rem;
            margin-bottom: 0.4rem;
            color: #3d3d52;
        }
        p {
            margin-bottom: 1.25rem;
            color: #2a2a3a;
        }
        ul,
        ol {
            margin: 1rem 0 1.5rem 2rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        strong,
        b {
            color: #1e1e2a;
            font-weight: 700;
        }
        em {
            font-style: italic;
        }
        hr {
            border: none;
            border-top: 2px solid #e5ddd4;
            margin: 2.5rem 0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        .site-header {
            background: #1e1e2a;
            color: #faf8f5;
            padding: 0.8rem 0;
            border-radius: 0 0 20px 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            color: #fbbf24;
            letter-spacing: -0.03em;
            text-transform: uppercase;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            -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 span {
            font-weight: 300;
            color: #faf8f5;
            -webkit-text-fill-color: #faf8f5;
            font-size: 1.2rem;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 1.8rem;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: #faf8f5;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s ease, color 0.2s ease;
        }
        .nav-menu a:hover {
            border-bottom-color: #fbbf24;
            color: #fbbf24;
            text-decoration: none;
        }
        .nav-menu a.active {
            border-bottom-color: #fbbf24;
            color: #fbbf24;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #faf8f5;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            transition: transform 0.2s ease;
        }
        .hamburger:hover {
            transform: scale(1.05);
        }
        .breadcrumb {
            background: #f0ebe4;
            padding: 0.6rem 1rem;
            border-radius: 30px;
            margin: 1.2rem 0 1.8rem;
            font-size: 0.9rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.4rem;
        }
        .breadcrumb i {
            color: #b45309;
            font-size: 0.75rem;
        }
        .breadcrumb a {
            color: #7b341e;
            font-weight: 500;
        }
        .breadcrumb span {
            color: #4a4a5e;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            max-width: 500px;
            margin: 2rem 0 1rem;
            width: 100%;
        }
        .search-form input {
            flex: 1;
            padding: 0.75rem 1.2rem;
            border: 2px solid #e5ddd4;
            border-radius: 50px;
            font-size: 1rem;
            background: #fff;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }
        .search-form input:focus {
            outline: none;
            border-color: #b45309;
            box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.15);
        }
        .search-form button {
            background: #b45309;
            color: #fff;
            border: none;
            border-radius: 50px;
            padding: 0.75rem 1.5rem;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s ease, transform 0.1s ease;
        }
        .search-form button:hover {
            background: #7b341e;
            transform: scale(1.02);
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }
        .featured-image figcaption {
            font-size: 0.85rem;
            color: #5a5a6e;
            margin-top: 0.5rem;
            text-align: center;
            font-style: italic;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.8rem;
            margin: 2rem 0;
        }
        .card {
            background: #fff;
            border-radius: 16px;
            padding: 1.8rem 1.5rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            border: 1px solid #ede8e2;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
        }
        .card i {
            font-size: 2.2rem;
            color: #b45309;
            margin-bottom: 0.8rem;
        }
        .card h3 {
            margin-top: 0;
        }
        .interview-block {
            background: #f0ebe4;
            border-left: 6px solid #b45309;
            padding: 1.8rem 2rem;
            border-radius: 16px;
            margin: 2rem 0;
            font-style: normal;
        }
        .interview-block p {
            margin-bottom: 0.8rem;
        }
        .interview-block .speaker {
            font-weight: 700;
            color: #7b341e;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.2rem;
            margin: 2rem 0;
        }
        .stat-item {
            background: #fff;
            border-radius: 16px;
            padding: 1.4rem 1rem;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            border: 1px solid #ede8e2;
        }
        .stat-item .number {
            font-size: 2.2rem;
            font-weight: 800;
            color: #b45309;
            display: block;
            line-height: 1.2;
        }
        .stat-item .label {
            font-size: 0.95rem;
            color: #4a4a5e;
            margin-top: 0.3rem;
        }
        .feedback-section {
            background: #fff;
            border-radius: 20px;
            padding: 2rem 2rem 2.5rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            margin: 3rem 0;
            border: 1px solid #ede8e2;
        }
        .feedback-section h2 {
            margin-top: 0;
            border-left-color: #fbbf24;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #1e1e2a;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #e5ddd4;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
            background: #faf8f5;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #b45309;
            box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.1);
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .form-row {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .form-row .form-group {
            flex: 1;
            min-width: 180px;
        }
        .btn-submit {
            background: #b45309;
            color: #fff;
            border: none;
            border-radius: 50px;
            padding: 0.8rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s ease, transform 0.1s ease;
        }
        .btn-submit:hover {
            background: #7b341e;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 0.4rem;
            font-size: 2rem;
            color: #e5ddd4;
            cursor: pointer;
            direction: rtl;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            transition: color 0.2s ease, transform 0.1s ease;
            cursor: pointer;
            color: #e5ddd4;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #fbbf24;
            transform: scale(1.05);
        }
        .star-rating label i {
            font-size: 2rem;
        }
        friend-link {
            display: block;
            background: #1e1e2a;
            color: #faf8f5;
            padding: 1.5rem 1.5rem;
            border-radius: 20px;
            margin: 2.5rem 0 1rem;
            text-align: center;
        }
        friend-link a {
            color: #fbbf24;
            font-weight: 500;
            margin: 0 0.8rem;
            display: inline-block;
        }
        friend-link a:hover {
            color: #fff;
            text-decoration: underline;
        }
        .site-footer {
            background: #1e1e2a;
            color: #cacad8;
            border-radius: 20px 20px 0 0;
            padding: 2rem 1.5rem 1.5rem;
            margin-top: 2rem;
            text-align: center;
            font-size: 0.9rem;
        }
        .site-footer p {
            color: #cacad8;
            margin-bottom: 0.4rem;
        }
        .site-footer .copy {
            font-weight: 600;
            color: #faf8f5;
            margin-top: 1rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
                margin-top: 2rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .header-inner {
                padding: 0.4rem 1rem;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: 0.6rem;
                padding: 1rem 0 0.5rem;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                margin-top: 0.6rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .breadcrumb {
                font-size: 0.8rem;
                padding: 0.4rem 0.8rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                padding: 0.7rem;
            }
            .feedback-section {
                padding: 1.5rem;
            }
            .form-row {
                flex-direction: column;
                gap: 0;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .interview-block {
                padding: 1.2rem 1.2rem;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .star-rating {
                font-size: 1.6rem;
            }
            .star-rating label i {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 0.6rem;
            }
            .container {
                padding: 0 0.4rem;
            }
            h1 {
                font-size: 1.5rem;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 0.8rem;
            }
            .stat-item .number {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        h2[id],
        h3[id] {
            scroll-margin-top: 100px;
        }
        .text-muted {
            color: #6a6a7e;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .tag {
            display: inline-block;
            background: #f0ebe4;
            color: #7b341e;
            font-size: 0.8rem;
            font-weight: 600;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            margin-right: 0.4rem;
        }
