* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f0f4e8;
            color: #1e3a2f;
            line-height: 1.8;
            padding: 0 16px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
            border-radius: 24px;
            padding: 20px 24px 32px;
            margin-top: 20px;
            margin-bottom: 40px;
        }
        header {
            border-bottom: 3px solid #4caf50;
            padding-bottom: 16px;
            margin-bottom: 24px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 800;
            text-decoration: none;
            color: #2e7d32;
            letter-spacing: -0.5px;
            background: linear-gradient(145deg, #1b5e20, #4caf50);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            padding: 4px 0;
        }
        .my-logo span {
            font-weight: 300;
            color: #6d8f6d;
            -webkit-text-fill-color: #6d8f6d;
        }
        .my-logo:hover {
            opacity: 0.85;
        }
        .hamburger {
            display: none;
            font-size: 30px;
            background: none;
            border: none;
            color: #2e7d32;
            cursor: pointer;
            padding: 6px 12px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #e8f0e0;
        }
        nav#main-nav ul {
            display: flex;
            gap: 8px 20px;
            list-style: none;
            flex-wrap: wrap;
            align-items: center;
        }
        nav#main-nav ul li a {
            text-decoration: none;
            color: #1e3a2f;
            font-weight: 600;
            font-size: 15px;
            padding: 6px 12px;
            border-radius: 30px;
            transition: all 0.2s;
        }
        nav#main-nav ul li a:hover {
            background: #4caf50;
            color: #fff;
        }
        nav#main-nav ul li a i {
            margin-right: 6px;
        }
        .breadcrumb {
            width: 100%;
            margin-top: 12px;
            font-size: 14px;
            color: #5a7a5a;
            background: #f5f9f2;
            padding: 8px 16px;
            border-radius: 40px;
            display: flex;
            flex-wrap: wrap;
            gap: 4px 8px;
        }
        .breadcrumb a {
            color: #2e7d32;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #6d8f6d;
        }
        .search-bar {
            display: flex;
            gap: 6px;
            margin: 16px 0 24px;
            max-width: 600px;
            width: 100%;
        }
        .search-bar input {
            flex: 1;
            padding: 12px 20px;
            border: 2px solid #c8dbc8;
            border-radius: 40px;
            font-size: 16px;
            outline: none;
            transition: border 0.2s;
            background: #f9fbf7;
        }
        .search-bar input:focus {
            border-color: #4caf50;
        }
        .search-bar button {
            background: #2e7d32;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 0 28px;
            font-size: 16px;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-bar button:hover {
            background: #1b5e20;
        }
        h1 {
            font-size: 36px;
            color: #1b5e20;
            margin: 20px 0 12px;
            line-height: 1.3;
        }
        h2 {
            font-size: 28px;
            color: #2e7d32;
            margin: 40px 0 16px;
            border-left: 6px solid #4caf50;
            padding-left: 18px;
        }
        h3 {
            font-size: 22px;
            color: #1e5631;
            margin: 32px 0 12px;
        }
        h4 {
            font-size: 18px;
            color: #2d6a2d;
            margin: 24px 0 10px;
            font-weight: 600;
        }
        p {
            margin-bottom: 18px;
            font-size: 16px;
            color: #1e3a2f;
        }
        .content-img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            margin: 24px 0;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
            border: 2px solid #e0efe0;
        }
        .content-img-wrapper {
            text-align: center;
        }
        .content-img-wrapper figcaption {
            font-size: 14px;
            color: #5a7a5a;
            margin-top: 8px;
            font-style: italic;
        }
        .highlight-box {
            background: #f0f9ee;
            border-left: 6px solid #4caf50;
            padding: 18px 24px;
            border-radius: 16px;
            margin: 24px 0;
        }
        .highlight-box strong {
            color: #1b5e20;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 16px;
            margin: 24px 0;
        }
        .stat-card {
            background: #f5faf3;
            padding: 18px 12px;
            border-radius: 16px;
            text-align: center;
            border: 1px solid #dce8dc;
        }
        .stat-card .number {
            font-size: 32px;
            font-weight: 800;
            color: #2e7d32;
        }
        .stat-card .label {
            font-size: 14px;
            color: #4a6a4a;
        }
        .interview-block {
            background: #fafcf8;
            border: 2px solid #dce8dc;
            border-radius: 20px;
            padding: 24px;
            margin: 28px 0;
        }
        .interview-block .q {
            font-weight: 700;
            color: #1b5e20;
        }
        .interview-block .a {
            margin-bottom: 18px;
            padding-left: 12px;
            border-left: 3px solid #a8c8a8;
        }
        .tip-list {
            list-style: none;
            padding: 0;
            display: grid;
            gap: 12px;
        }
        .tip-list li {
            background: #f5faf3;
            padding: 14px 20px;
            border-radius: 14px;
            border-left: 5px solid #4caf50;
            font-size: 15px;
        }
        .tip-list li i {
            color: #4caf50;
            margin-right: 12px;
            width: 20px;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #f9fbf7;
            border-radius: 16px;
            overflow: hidden;
        }
        th {
            background: #2e7d32;
            color: #fff;
            padding: 14px 16px;
            text-align: left;
            font-weight: 600;
        }
        td {
            padding: 12px 16px;
            border-bottom: 1px solid #e0efe0;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #f0f9ee;
        }
        .feedback-section {
            margin: 48px 0 24px;
            padding-top: 32px;
            border-top: 3px solid #dce8dc;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }
        @media (max-width: 700px) {
            .feedback-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        .rating-area,
        .comment-area {
            background: #f5faf3;
            padding: 24px;
            border-radius: 20px;
            border: 1px solid #dce8dc;
        }
        .rating-area h3,
        .comment-area h3 {
            margin-top: 0;
            margin-bottom: 16px;
            font-size: 20px;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            font-size: 32px;
            margin: 12px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #c8dbc8;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5b342;
        }
        .rating-area button,
        .comment-area button {
            background: #2e7d32;
            color: #fff;
            border: none;
            padding: 12px 28px;
            border-radius: 40px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            margin-top: 12px;
        }
        .rating-area button:hover,
        .comment-area button:hover {
            background: #1b5e20;
        }
        .comment-area textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #c8dbc8;
            border-radius: 16px;
            font-size: 15px;
            font-family: inherit;
            resize: vertical;
            min-height: 120px;
            outline: none;
            background: #fff;
            transition: border 0.2s;
        }
        .comment-area textarea:focus {
            border-color: #4caf50;
        }
        .comment-area input[type="text"] {
            width: 100%;
            padding: 12px 18px;
            border: 2px solid #c8dbc8;
            border-radius: 40px;
            font-size: 15px;
            outline: none;
            margin-bottom: 12px;
            background: #fff;
            transition: border 0.2s;
        }
        .comment-area input[type="text"]:focus {
            border-color: #4caf50;
        }
        friend-link {
            display: block;
            margin: 40px 0 16px;
            padding: 24px;
            background: #f5faf3;
            border-radius: 20px;
            border: 2px solid #dce8dc;
        }
        friend-link h3 {
            margin-top: 0;
            font-size: 20px;
            color: #1b5e20;
        }
        friend-link ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 12px 20px;
            padding: 0;
        }
        friend-link ul li a {
            color: #2e7d32;
            text-decoration: none;
            font-weight: 500;
            padding: 4px 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s;
        }
        friend-link ul li a:hover {
            border-bottom-color: #4caf50;
        }
        footer {
            margin-top: 32px;
            padding-top: 20px;
            border-top: 2px solid #dce8dc;
            font-size: 14px;
            color: #4a6a4a;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 12px;
        }
        footer .copyright {
            font-weight: 500;
        }
        footer a {
            color: #2e7d32;
            text-decoration: none;
        }
        footer a:hover {
            text-decoration: underline;
        }
        @media (max-width: 768px) {
            .container {
                padding: 16px;
                margin-top: 10px;
                border-radius: 16px;
            }
            h1 {
                font-size: 26px;
            }
            h2 {
                font-size: 22px;
            }
            h3 {
                font-size: 18px;
            }
            .my-logo {
                font-size: 22px;
            }
            .hamburger {
                display: block;
            }
            nav#main-nav {
                width: 100%;
                display: none;
                margin-top: 12px;
            }
            nav#main-nav.open {
                display: block;
            }
            nav#main-nav ul {
                flex-direction: column;
                gap: 4px;
                width: 100%;
            }
            nav#main-nav ul li {
                width: 100%;
            }
            nav#main-nav ul li a {
                display: block;
                width: 100%;
                padding: 12px 16px;
                border-radius: 12px;
                background: #f5faf3;
            }
            .search-bar {
                flex-wrap: wrap;
            }
            .search-bar button {
                padding: 12px 20px;
                width: 100%;
                justify-content: center;
            }
            .breadcrumb {
                font-size: 12px;
                padding: 6px 12px;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
            .interview-block {
                padding: 16px;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 8px;
            }
            .container {
                padding: 12px;
            }
            h1 {
                font-size: 22px;
            }
            h2 {
                font-size: 19px;
                padding-left: 12px;
            }
            h3 {
                font-size: 16px;
            }
            .stat-card .number {
                font-size: 24px;
            }
            .star-rating {
                font-size: 26px;
            }
        }
        .tag {
            display: inline-block;
            background: #e8f0e0;
            color: #1b5e20;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
            margin: 2px 4px 2px 0;
        }
        .last-updated {
            display: inline-block;
            background: #f0f4e8;
            padding: 4px 16px;
            border-radius: 30px;
            font-size: 13px;
            color: #4a6a4a;
            margin-bottom: 12px;
        }
        .last-updated i {
            margin-right: 6px;
        }
        a {
            color: #2e7d32;
        }
        a:hover {
            color: #1b5e20;
        }
        strong {
            color: #1b5e20;
        }
        .hidden-schema {
            display: none;
        }
