* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', 'Roboto', system-ui, -apple-system, sans-serif;
            background: #f8f4f0;
            color: #1e2a3a;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #d97706;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #b45309;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            padding: 16px 0;
            border-bottom: 4px solid #f59e0b;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(to right, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            text-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
            display: inline-block;
        }
        .my-logo small {
            font-size: 0.9rem;
            font-weight: 400;
            -webkit-text-fill-color: #94a3b8;
            color: #94a3b8;
            letter-spacing: 0;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f59e0b;
            color: #f59e0b;
            font-size: 1.5rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #f59e0b;
            color: #0f172a;
        }
        .main-nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #e2e8f0;
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: 0.25s;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background: rgba(245, 158, 11, 0.15);
            color: #fbbf24;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 6px;
        }
        .breadcrumb-wrap {
            background: #fff;
            padding: 12px 0;
            border-bottom: 1px solid #e5e7eb;
            font-size: 0.9rem;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            list-style: none;
            align-items: center;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 8px;
            color: #9ca3af;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #6b7280;
        }
        .breadcrumb a:hover {
            color: #d97706;
        }
        .breadcrumb .current {
            color: #1e2a3a;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(145deg, #1e293b, #0f172a);
            padding: 48px 0 40px;
            color: #f1f5f9;
            text-align: center;
            border-bottom: 6px solid #f59e0b;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
            background: linear-gradient(to right, #fbbf24, #f59e0b, #ef4444);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 1.2rem;
            color: #cbd5e1;
            max-width: 760px;
            margin: 0 auto 20px;
        }
        .hero .meta-info {
            font-size: 0.95rem;
            color: #94a3b8;
            display: flex;
            justify-content: center;
            gap: 28px;
            flex-wrap: wrap;
        }
        .hero .meta-info i {
            color: #f59e0b;
            margin-right: 6px;
        }
        .section {
            padding: 48px 0;
            background: #fff;
        }
        .section:nth-child(even) {
            background: #f9f7f5;
        }
        .section h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 28px;
            color: #0f172a;
            border-left: 6px solid #f59e0b;
            padding-left: 20px;
        }
        .section h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin: 28px 0 16px;
            color: #1e293b;
        }
        .section h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 20px 0 12px;
            color: #334155;
        }
        .section p {
            margin-bottom: 18px;
            color: #374151;
            font-size: 1.05rem;
        }
        .section ul,
        .section ol {
            margin: 16px 0 20px 24px;
            color: #374151;
        }
        .section li {
            margin-bottom: 10px;
            font-size: 1.02rem;
        }
        .highlight-box {
            background: #fffbeb;
            border-left: 6px solid #f59e0b;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .highlight-box strong {
            color: #b45309;
        }
        .img-wrapper {
            margin: 32px 0;
            text-align: center;
        }
        .img-wrapper figcaption {
            margin-top: 12px;
            font-size: 0.9rem;
            color: #6b7280;
            font-style: italic;
        }
        .link-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 12px;
            margin: 24px 0;
            padding: 0;
            list-style: none;
        }
        .link-list li a {
            display: block;
            padding: 12px 18px;
            background: #f1f5f9;
            border-radius: 10px;
            font-weight: 500;
            transition: 0.25s;
            border: 1px solid transparent;
        }
        .link-list li a:hover {
            background: #fef3c7;
            border-color: #f59e0b;
            text-decoration: none;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(245, 158, 11, 0.15);
        }
        .link-list li a i {
            color: #d97706;
            margin-right: 8px;
        }
        .search-area {
            background: #f1f5f9;
            padding: 32px;
            border-radius: 16px;
            margin: 32px 0;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: 2px solid #d1d5db;
            border-radius: 10px;
            font-size: 1rem;
            outline: none;
            transition: 0.25s;
        }
        .search-form input:focus {
            border-color: #f59e0b;
            box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15);
        }
        .search-form button {
            padding: 14px 32px;
            background: #f59e0b;
            color: #0f172a;
            border: none;
            border-radius: 10px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.25s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #d97706;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            margin: 32px 0;
        }
        @media (max-width:768px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .card {
            background: #fff;
            border-radius: 16px;
            padding: 28px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid #e5e7eb;
        }
        .card h3 {
            margin-top: 0;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .card h3 i {
            color: #f59e0b;
        }
        .form-group {
            margin-bottom: 18px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 6px;
            color: #1e293b;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #d1d5db;
            border-radius: 10px;
            font-size: 1rem;
            outline: none;
            transition: 0.25s;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #f59e0b;
            box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #d1d5db;
            cursor: pointer;
            transition: 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f59e0b;
        }
        .btn {
            padding: 14px 32px;
            border: none;
            border-radius: 10px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-primary {
            background: #f59e0b;
            color: #0f172a;
        }
        .btn-primary:hover {
            background: #d97706;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #f59e0b;
            color: #f59e0b;
        }
        .btn-outline:hover {
            background: #f59e0b;
            color: #0f172a;
        }
        .site-footer {
            background: #0f172a;
            color: #cbd5e1;
            padding: 48px 0 24px;
            border-top: 4px solid #f59e0b;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 32px;
        }
        @media (max-width:768px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
        }
        .footer-col h4 {
            color: #fbbf24;
            margin-bottom: 16px;
            font-size: 1.1rem;
        }
        .footer-col p,
        .footer-col a {
            color: #94a3b8;
            font-size: 0.95rem;
        }
        .footer-col a:hover {
            color: #fbbf24;
        }
        friend-link {
            display: block;
            margin-top: 12px;
        }
        friend-link a {
            display: inline-block;
            margin-right: 16px;
            margin-bottom: 8px;
            padding: 6px 14px;
            background: rgba(245, 158, 11, 0.08);
            border-radius: 6px;
            font-size: 0.9rem;
            border: 1px solid rgba(245, 158, 11, 0.15);
            transition: 0.25s;
        }
        friend-link a:hover {
            background: rgba(245, 158, 11, 0.18);
            border-color: #f59e0b;
            text-decoration: none;
        }
        .copyright {
            border-top: 1px solid #1e293b;
            padding-top: 20px;
            text-align: center;
            font-size: 0.9rem;
            color: #6b7280;
        }
        .copyright strong {
            color: #94a3b8;
        }
        @media (max-width:768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding-top: 16px;
                gap: 4px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 12px 16px;
                border-radius: 8px;
                background: rgba(255, 255, 255, 0.04);
                width: 100%;
            }
            .hero h1 {
                font-size: 1.9rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .section h2 {
                font-size: 1.5rem;
            }
            .section p {
                font-size: 0.98rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .breadcrumb {
                font-size: 0.82rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                justify-content: center;
            }
        }
        @media (max-width:480px) {
            .container {
                padding: 0 14px;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .section {
                padding: 32px 0;
            }
            .card {
                padding: 20px;
            }
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        .table-wrap table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.98rem;
        }
        .table-wrap th,
        .table-wrap td {
            padding: 12px 16px;
            border: 1px solid #e5e7eb;
            text-align: left;
        }
        .table-wrap th {
            background: #f59e0b;
            color: #0f172a;
            font-weight: 700;
        }
        .table-wrap tr:nth-child(even) {
            background: #f9fafb;
        }
        .table-wrap tr:hover {
            background: #fffbeb;
        }
        .tag {
            display: inline-block;
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            background: #fef3c7;
            color: #92400e;
        }
        .interview-block {
            background: #f1f5f9;
            border-radius: 16px;
            padding: 28px;
            margin: 24px 0;
            border-left: 6px solid #f59e0b;
        }
        .interview-block .q {
            font-weight: 700;
            color: #0f172a;
        }
        .interview-block .a {
            color: #475569;
            margin-bottom: 16px;
        }
