*,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --green: #2e7d32;
            --green-light: #4caf50;
            --green-dark: #1b5e20;
            --gold: #f9a825;
            --gold-light: #ffd54f;
            --cream: #fff8e1;
            --brown: #5d4037;
            --brown-light: #8d6e63;
            --text: #263238;
            --text-light: #546e7a;
            --white: #ffffff;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            --radius: 16px;
            --transition: 0.3s ease;
            --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font);
            background: #fafaf5;
            color: var(--text);
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: var(--green);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--green-dark);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--green-dark), var(--green));
            color: var(--white);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--white);
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }
        .my-logo:hover {
            color: var(--gold-light);
            text-decoration: none;
        }
        .my-logo i {
            font-size: 2rem;
            color: var(--gold-light);
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid var(--white);
            color: var(--white);
            font-size: 1.5rem;
            padding: 6px 12px;
            border-radius: 8px;
            cursor: pointer;
            transition: var(--transition);
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.15);
        }
        nav {
            display: flex;
            gap: 24px;
            align-items: center;
            flex-wrap: wrap;
        }
        nav a {
            color: var(--white);
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: var(--transition);
        }
        nav a:hover {
            color: var(--gold-light);
            border-bottom-color: var(--gold-light);
            text-decoration: none;
        }
        .breadcrumb {
            background: var(--cream);
            padding: 10px 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #e0d5c1;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            align-items: center;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 6px;
            color: var(--text-light);
        }
        .breadcrumb a {
            color: var(--green);
        }
        .breadcrumb .current {
            color: var(--text-light);
        }
        .hero {
            background: linear-gradient(135deg, #e8f5e9, #fff8e1);
            padding: 48px 0 40px;
            text-align: center;
            border-bottom: 4px solid var(--green-light);
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--green-dark);
            margin-bottom: 12px;
            line-height: 1.2;
        }
        .hero h1 i {
            color: var(--gold);
            margin-right: 8px;
        }
        .hero p {
            font-size: 1.15rem;
            color: var(--brown);
            max-width: 720px;
            margin: 0 auto 16px;
        }
        .hero-meta {
            font-size: 0.9rem;
            color: var(--text-light);
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }
        .hero-meta i {
            margin-right: 6px;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        .content-area {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--green-dark);
            margin: 48px 0 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid var(--gold-light);
        }
        h2 i {
            color: var(--gold);
            margin-right: 8px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--brown);
            margin: 32px 0 12px;
        }
        h3 i {
            color: var(--green-light);
            margin-right: 8px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text);
            margin: 24px 0 8px;
        }
        p {
            margin-bottom: 16px;
            color: var(--text);
        }
        .highlight {
            background: linear-gradient(to right, #fff8e1, #fff3cd);
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 600;
        }
        .emoji-big {
            font-size: 1.4em;
        }
        .featured-image {
            margin: 32px 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            background: var(--cream);
        }
        .featured-image img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 12px 20px;
            font-size: 0.9rem;
            color: var(--text-light);
            background: var(--white);
            border-top: 1px solid #eee;
        }
        .tip-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 24px;
            box-shadow: var(--shadow);
            border-left: 5px solid var(--gold);
            margin: 24px 0;
            transition: var(--transition);
        }
        .tip-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
        }
        .tip-card h4 {
            margin-top: 0;
            color: var(--green-dark);
        }
        .insight-box {
            background: #e8f5e9;
            border-radius: var(--radius);
            padding: 24px;
            margin: 24px 0;
            border: 1px solid #c8e6c9;
        }
        .insight-box h4 {
            color: var(--green-dark);
            margin-top: 0;
        }
        .interview-block {
            background: var(--cream);
            border-radius: var(--radius);
            padding: 28px;
            margin: 32px 0;
            border: 1px solid #f0e0b0;
            box-shadow: var(--shadow);
        }
        .interview-block blockquote {
            font-style: italic;
            font-size: 1.05rem;
            color: var(--brown);
            padding: 12px 24px;
            border-left: 4px solid var(--gold);
            margin: 16px 0;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 0 8px 8px 0;
        }
        .interview-block .speaker {
            font-weight: 700;
            color: var(--green-dark);
        }
        .related-links {
            background: var(--white);
            border-radius: var(--radius);
            padding: 20px 24px;
            box-shadow: var(--shadow);
            margin: 24px 0;
            border: 1px solid #e8e0d0;
        }
        .related-links h4 {
            margin-top: 0;
            color: var(--green-dark);
        }
        .related-links ul {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px 20px;
        }
        .related-links li {
            padding: 4px 0;
        }
        .related-links a {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .related-links a::before {
            content: "🌾";
            font-size: 0.85rem;
        }
        .form-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 28px;
            box-shadow: var(--shadow);
            margin: 32px 0;
            border: 1px solid #e8e0d0;
        }
        .form-card h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 16px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 4px;
            font-size: 0.95rem;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-size: 1rem;
            font-family: var(--font);
            transition: var(--transition);
            background: #fafaf5;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--green-light);
            outline: none;
            box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.15);
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            background: var(--green);
            color: var(--white);
            border: none;
            padding: 12px 32px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn:hover {
            background: var(--green-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
        }
        .btn-gold {
            background: var(--gold);
            color: var(--brown);
        }
        .btn-gold:hover {
            background: #f57f17;
            color: var(--white);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            gap: 4px;
            justify-content: flex-end;
            font-size: 1.8rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #ddd;
            transition: var(--transition);
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: var(--gold);
        }
        .sidebar-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 24px;
            box-shadow: var(--shadow);
            margin-bottom: 24px;
            border: 1px solid #e8e0d0;
        }
        .sidebar-card h4 {
            margin-top: 0;
            color: var(--green-dark);
            border-bottom: 2px solid var(--gold-light);
            padding-bottom: 8px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card li {
            padding: 6px 0;
            border-bottom: 1px solid #f0ece4;
        }
        .sidebar-card li:last-child {
            border-bottom: none;
        }
        .sidebar-card a {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .saga-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .saga-table th {
            background: var(--green);
            color: var(--white);
            padding: 14px 18px;
            text-align: left;
            font-weight: 600;
        }
        .saga-table td {
            padding: 12px 18px;
            border-bottom: 1px solid #eee;
            background: var(--white);
        }
        .saga-table tr:hover td {
            background: #f5faf5;
        }
        footer {
            background: var(--green-dark);
            color: var(--white);
            padding: 40px 0 24px;
            margin-top: 48px;
        }
        footer .container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
        }
        footer h4 {
            color: var(--gold-light);
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        footer a {
            color: #c8e6c9;
        }
        footer a:hover {
            color: var(--white);
        }
        friend-link {
            display: block;
            margin-top: 8px;
        }
        friend-link a {
            display: inline-block;
            padding: 4px 0;
        }
        .copyright {
            grid-column: 1 / -1;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            padding-top: 20px;
            text-align: center;
            font-size: 0.9rem;
            color: #a5d6a7;
        }
        @media (max-width: 992px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            footer .container {
                grid-template-columns: 1fr 1fr;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 8px;
                padding-top: 12px;
                border-top: 1px solid rgba(255, 255, 255, 0.2);
                margin-top: 8px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 10px 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .related-links ul {
                grid-template-columns: 1fr;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            footer .container {
                grid-template-columns: 1fr;
            }
            .saga-table {
                font-size: 0.85rem;
            }
            .saga-table th,
            .saga-table td {
                padding: 8px 10px;
            }
            .interview-block {
                padding: 16px;
            }
            .form-card {
                padding: 20px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .my-logo i {
                font-size: 1.4rem;
            }
            .hero-meta {
                flex-direction: column;
                gap: 6px;
            }
        }
        .text-center {
            text-align: center;
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }
        .gap-8 {
            gap: 8px;
        }
        .fw-700 {
            font-weight: 700;
        }
