* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f4f7f2;
            color: #1e2a1e;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #2e7d32;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #66bb6a;
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: #1b3b1b;
            color: #fff;
            padding: 16px 0;
            border-bottom: 4px solid #66bb6a;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #c8e6c9;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-decoration: none;
        }
        .my-logo:hover {
            color: #fff;
            text-decoration: none;
        }
        .my-logo span {
            color: #81c784;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 10px;
        }
        .navbar {
            display: flex;
            gap: 24px;
            align-items: center;
            flex-wrap: wrap;
        }
        .navbar a {
            color: #e8f5e9;
            font-weight: 500;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .navbar a:hover {
            border-bottom-color: #81c784;
            color: #fff;
            text-decoration: none;
        }
        .breadcrumb {
            background: #e8f0e4;
            padding: 10px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #c8e0c0;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .breadcrumb ol li+li::before {
            content: "›";
            margin-right: 8px;
            color: #6a8e6a;
        }
        .breadcrumb a {
            color: #2e7d32;
        }
        .breadcrumb .current {
            color: #558b2f;
            font-weight: 600;
        }
        main {
            padding: 40px 0;
        }
        h1 {
            font-size: 2.6rem;
            color: #1b3b1b;
            margin-bottom: 16px;
            line-height: 1.2;
            border-left: 6px solid #66bb6a;
            padding-left: 20px;
        }
        h2 {
            font-size: 1.9rem;
            color: #1b3b1b;
            margin: 48px 0 16px;
            padding-bottom: 8px;
            border-bottom: 2px solid #c8e6c9;
        }
        h3 {
            font-size: 1.4rem;
            color: #2e5a2e;
            margin: 32px 0 12px;
        }
        h4 {
            font-size: 1.15rem;
            color: #3a6e3a;
            margin: 24px 0 10px;
            font-weight: 600;
        }
        p {
            margin-bottom: 18px;
        }
        .last-updated {
            background: #e8f0e4;
            padding: 10px 18px;
            border-radius: 30px;
            display: inline-block;
            font-size: 0.85rem;
            color: #3a5a3a;
            margin-bottom: 24px;
        }
        .featured-image {
            margin: 30px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            background: #e8f0e4;
            text-align: center;
        }
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
            max-width: 100%;
        }
        .featured-image figcaption {
            padding: 12px;
            font-size: 0.9rem;
            color: #3a5a3a;
            background: #f4faf2;
        }
        .highlight-box {
            background: #e8f5e9;
            border-left: 6px solid #66bb6a;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 28px 0;
        }
        .highlight-box strong {
            color: #1b3b1b;
        }
        .interview-card {
            background: #f9fdf9;
            border: 1px solid #c8e6c9;
            border-radius: 16px;
            padding: 28px;
            margin: 36px 0;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
        }
        .interview-card h3 i {
            color: #66bb6a;
            margin-right: 10px;
        }
        .step-list {
            counter-reset: step;
            list-style: none;
            padding: 0;
        }
        .step-list li {
            counter-increment: step;
            padding: 16px 20px 16px 56px;
            background: #f9fdf9;
            border: 1px solid #dcedc8;
            border-radius: 12px;
            margin-bottom: 14px;
            position: relative;
            font-weight: 500;
        }
        .step-list li::before {
            content: counter(step);
            position: absolute;
            left: 14px;
            top: 14px;
            width: 32px;
            height: 32px;
            background: #66bb6a;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1rem;
        }
        .step-list li strong {
            color: #1b3b1b;
        }
        .tip-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
            margin: 30px 0;
        }
        .tip-card {
            background: #fff;
            border: 1px solid #dcedc8;
            border-radius: 16px;
            padding: 24px;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .tip-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
        }
        .tip-card i {
            font-size: 2rem;
            color: #66bb6a;
            margin-bottom: 12px;
        }
        .tip-card h4 {
            margin-top: 0;
        }
        .faq-item {
            border-bottom: 1px solid #dcedc8;
            padding: 18px 0;
        }
        .faq-item h4 {
            margin: 0 0 6px;
            color: #1b3b1b;
        }
        .search-section,
        .comment-section,
        .score-section {
            background: #f9fdf9;
            border: 1px solid #c8e6c9;
            border-radius: 20px;
            padding: 32px;
            margin: 48px 0;
        }
        .search-section h2,
        .comment-section h2,
        .score-section h2 {
            border-bottom: none;
            margin-top: 0;
            padding-bottom: 0;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 16px;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: 2px solid #c8e6c9;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: 0.2s;
        }
        .search-form input:focus {
            border-color: #66bb6a;
        }
        .search-form button {
            background: #2e7d32;
            color: #fff;
            border: none;
            padding: 14px 32px;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
        }
        .search-form button:hover {
            background: #1b5e20;
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #c8e6c9;
            border-radius: 12px;
            font-size: 1rem;
            margin-bottom: 14px;
            outline: none;
            font-family: inherit;
            transition: 0.2s;
        }
        .comment-form textarea:focus,
        .comment-form input:focus {
            border-color: #66bb6a;
        }
        .comment-form textarea {
            min-height: 140px;
            resize: vertical;
        }
        .comment-form button,
        .score-form button {
            background: #2e7d32;
            color: #fff;
            border: none;
            padding: 14px 36px;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
        }
        .comment-form button:hover,
        .score-form button:hover {
            background: #1b5e20;
        }
        .score-stars {
            display: flex;
            gap: 8px;
            font-size: 2rem;
            margin: 12px 0 18px;
            cursor: pointer;
        }
        .score-stars i {
            color: #ccc;
            transition: 0.2s;
        }
        .score-stars i.active,
        .score-stars i:hover {
            color: #f9a825;
        }
        .score-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 400px;
        }
        .score-form input {
            padding: 12px 18px;
            border: 2px solid #c8e6c9;
            border-radius: 12px;
            font-size: 1rem;
            outline: none;
        }
        .score-form input:focus {
            border-color: #66bb6a;
        }
        footer {
            background: #1b3b1b;
            color: #dcedc8;
            padding: 40px 0 24px;
            margin-top: 60px;
        }
        footer a {
            color: #a5d6a7;
        }
        footer a:hover {
            color: #fff;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 32px;
            margin-bottom: 32px;
        }
        friend-link {
            display: block;
            padding: 20px 0;
            border-top: 1px solid #2e5a2e;
            border-bottom: 1px solid #2e5a2e;
            margin-bottom: 20px;
        }
        friend-link a {
            display: inline-block;
            margin-right: 20px;
            margin-bottom: 8px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #2e5a2e;
            font-size: 0.85rem;
            color: #a5bda5;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .navbar {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 12px;
                padding: 16px 0 8px;
            }
            .navbar.open {
                display: flex;
            }
            h1 {
                font-size: 1.9rem;
                padding-left: 14px;
            }
            h2 {
                font-size: 1.5rem;
            }
            .header-inner {
                align-items: center;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
            .featured-image {
                margin: 16px 0;
            }
            .interview-card {
                padding: 18px;
            }
            .step-list li {
                padding: 14px 14px 14px 48px;
            }
            .step-list li::before {
                left: 10px;
                top: 10px;
                width: 28px;
                height: 28px;
                font-size: 0.85rem;
            }
            .score-stars {
                font-size: 1.6rem;
            }
        }
        @media (min-width: 769px) {
            .navbar {
                display: flex !important;
            }
        }
        .text-muted {
            color: #5a7a5a;
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .icon-green {
            color: #66bb6a;
        }
        .inline-link-list {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
        }
        .inline-link-list li {
            margin: 0;
        }
        .inline-link-list a {
            font-weight: 500;
        }
        .table-of-contents {
            background: #f9fdf9;
            border: 1px solid #dcedc8;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 28px 0;
        }
        .table-of-contents ol {
            padding-left: 20px;
            columns: 2;
            column-gap: 40px;
        }
        .table-of-contents ol li {
            margin-bottom: 6px;
            break-inside: avoid;
        }
        @media (max-width: 600px) {
            .table-of-contents ol {
                columns: 1;
            }
        }
