        *,
        *::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: #f8f6f0;
            color: #2d2a24;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: #1a6b3c;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #0d4a28;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #1a3b2f;
            line-height: 1.2;
            margin-bottom: 0.5rem;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 2.0rem;
            font-weight: 700;
            color: #1a3b2f;
            margin-top: 3rem;
            margin-bottom: 1rem;
            border-left: 6px solid #d4a843;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2d4a3a;
            margin-top: 2.2rem;
            margin-bottom: 0.8rem;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #3d5a4a;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
            color: #3a3530;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 400;
            color: #4a4540;
            line-height: 1.8;
        }
        strong {
            color: #1a3b2f;
            font-weight: 700;
        }
        .highlight {
            background: linear-gradient(to right, #fdf6e3, #fcebbd);
            padding: 0.1rem 0.4rem;
            border-radius: 4px;
        }
        header {
            background: #1a3b2f;
            color: #f8f6f0;
            padding: 0 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.8rem 0;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.0rem;
            font-weight: 800;
            color: #d4a843;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-style: italic;
            transition: opacity 0.2s;
            text-decoration: none !important;
        }
        .my-logo:hover {
            opacity: 0.85;
            color: #e8c56a;
        }
        .my-logo span {
            color: #f8f6f0;
            font-weight: 300;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 1.2rem;
        }
        .main-nav {
            display: flex;
            gap: 1.6rem;
            list-style: none;
            align-items: center;
        }
        .main-nav a {
            color: #e8e0d5;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: all 0.25s;
            text-decoration: none !important;
        }
        .main-nav a:hover {
            color: #d4a843;
            border-bottom-color: #d4a843;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f8f6f0;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            transition: transform 0.2s;
        }
        .hamburger:hover {
            transform: scale(1.1);
        }
        .breadcrumb {
            background: #eeeae0;
            padding: 0.6rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #ddd6c8;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
            align-items: center;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.4rem;
            color: #8a7e6e;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #1a6b3c;
        }
        .breadcrumb .current {
            color: #6a5e4e;
            font-weight: 500;
        }
        .hero {
            background: linear-gradient(135deg, #1a3b2f 0%, #2d5a44 50%, #1a3b2f 100%);
            color: #f8f6f0;
            padding: 3.5rem 0 3rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "♠ ♥ ♦ ♣";
            position: absolute;
            bottom: 0.4rem;
            right: 2rem;
            font-size: 6rem;
            opacity: 0.06;
            letter-spacing: 2rem;
            pointer-events: none;
        }
        .hero h1 {
            color: #f8f6f0;
            font-size: 3.2rem;
            margin-bottom: 0.8rem;
        }
        .hero p {
            color: #d4d0c8;
            font-size: 1.3rem;
            max-width: 750px;
            margin: 0 auto 1.2rem;
        }
        .hero .cta-btn {
            display: inline-block;
            background: #d4a843;
            color: #1a3b2f;
            padding: 0.9rem 2.6rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s;
            text-decoration: none !important;
            box-shadow: 0 8px 24px rgba(212, 168, 67, 0.3);
        }
        .hero .cta-btn:hover {
            background: #e8c56a;
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(212, 168, 67, 0.4);
        }
        main {
            padding: 2.5rem 0 3rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        @media(max-width:960px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card {
            background: #fffcf6;
            border-radius: 16px;
            padding: 1.6rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid #e8e0d5;
            margin-bottom: 1.6rem;
        }
        .sidebar-card h4 {
            margin-top: 0;
            font-size: 1.1rem;
            border-bottom: 2px solid #d4a843;
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
        }
        .sidebar-card ul {
            list-style: none;
        }
        .sidebar-card li {
            padding: 0.4rem 0;
            border-bottom: 1px dashed #e0d8cc;
        }
        .sidebar-card li a {
            color: #1a6b3c;
            font-weight: 500;
        }
        .sidebar-card li a:hover {
            color: #0d4a28;
        }
        .search-form {
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            border: 2px solid #d4a843;
            background: #fff;
            transition: box-shadow 0.3s;
        }
        .search-form:focus-within {
            box-shadow: 0 0 0 4px rgba(212, 168, 67, 0.25);
        }
        .search-form input[type="text"] {
            flex: 1;
            border: none;
            padding: 0.7rem 1.2rem;
            font-size: 1rem;
            outline: none;
            background: transparent;
            color: #2d2a24;
        }
        .search-form button {
            background: #d4a843;
            border: none;
            padding: 0.7rem 1.4rem;
            color: #1a3b2f;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            font-size: 1rem;
        }
        .search-form button:hover {
            background: #e8c56a;
        }
        .feedback-section {
            background: #fffcf6;
            border-radius: 20px;
            padding: 2rem;
            margin-top: 3rem;
            border: 1px solid #e8e0d5;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        }
        .feedback-section h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #2d2a24;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #ddd6c8;
            border-radius: 10px;
            font-size: 1rem;
            background: #fff;
            transition: border-color 0.2s;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #d4a843;
            outline: none;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn-submit {
            background: #1a6b3c;
            color: #fff;
            border: none;
            padding: 0.8rem 2.4rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        .btn-submit:hover {
            background: #0d4a28;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(26, 107, 60, 0.3);
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #ddd6c8;
            cursor: pointer;
            direction: rtl;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            transition: color 0.2s;
            cursor: pointer;
            color: #ddd6c8;
        }
        .rating-stars input:checked~label,
        .rating-stars label:hover,
        .rating-stars label:hover~label {
            color: #d4a843;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        .featured-image figcaption {
            padding: 0.8rem 1.2rem;
            background: #f0ece4;
            font-size: 0.9rem;
            color: #5a4e3e;
            font-style: italic;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
        }
        .data-table th {
            background: #1a3b2f;
            color: #f8f6f0;
            padding: 0.8rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #e8e0d5;
            background: #fffcf6;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #f6f0e6;
        }
        .interview-block {
            background: #f0ece4;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin: 2rem 0;
            border-left: 6px solid #d4a843;
            position: relative;
        }
        .interview-block::before {
            content: "“";
            font-size: 4rem;
            color: #d4a843;
            opacity: 0.3;
            position: absolute;
            top: 0.2rem;
            left: 0.8rem;
            font-family: Georgia, serif;
        }
        .interview-block .attribution {
            font-weight: 600;
            color: #1a3b2f;
            margin-top: 0.8rem;
            font-style: normal;
        }
        footer {
            background: #1a3b2f;
            color: #d4d0c8;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
        }
        footer a {
            color: #d4a843;
        }
        footer a:hover {
            color: #e8c56a;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        @media(max-width:700px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }
        .footer-grid h4 {
            color: #f8f6f0;
            margin-top: 0;
            border-bottom: 2px solid #d4a843;
            padding-bottom: 0.5rem;
            display: inline-block;
        }
        .footer-grid ul {
            list-style: none;
            margin-top: 0.8rem;
        }
        .footer-grid li {
            padding: 0.25rem 0;
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 1.5rem;
            margin-top: 1.5rem;
            border: 1px solid rgba(212, 168, 67, 0.2);
        }
        friend-link::before {
            content: "🔗 Friend Links";
            display: block;
            font-weight: 700;
            color: #d4a843;
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
        }
        friend-link a {
            display: inline-block;
            margin-right: 1.5rem;
            margin-bottom: 0.4rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #a09888;
        }
        .copyright strong {
            color: #d4a843;
        }
        @media(max-width:768px) {
            html {
                font-size: 15px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .hero h1 {
                font-size: 2.4rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .header-inner {
                padding: 0.6rem 0;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                background: #1a3b2f;
                padding: 1rem 1.2rem;
                border-radius: 0 0 16px 16px;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                gap: 0.6rem;
                box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.5rem 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            }
            .hamburger {
                display: block;
            }
            .nav-wrapper {
                gap: 0.6rem;
            }
            .sidebar {
                position: static;
            }
            .feedback-section {
                padding: 1.2rem;
            }
            .data-table {
                font-size: 0.9rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.5rem 0.6rem;
            }
            .interview-block {
                padding: 1.2rem 1.2rem;
            }
        }
        @media(max-width:480px) {
            .container {
                padding: 0 12px;
            }
            h1 {
                font-size: 1.8rem;
            }
            .hero h1 {
                font-size: 1.9rem;
            }
            .hero .cta-btn {
                padding: 0.7rem 1.8rem;
                font-size: 0.95rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        .text-center {
            text-align: center;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            align-items: center;
        }
        .badge {
            display: inline-block;
            background: #d4a843;
            color: #1a3b2f;
            padding: 0.2rem 1rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.85rem;
        }
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .fade-up {
            animation: fadeUp 0.5s ease forwards;
        }
