        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f5f0e8;
            color: #2d2d2d;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #1a6b4a;
            text-decoration: none;
            transition: color 0.25s;
        }
        a:hover,
        a:focus {
            color: #c8a84e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin-bottom: 1.2rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #1a3a2a;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
        }
        h1 {
            font-size: 2.6rem;
            border-bottom: 4px solid #c8a84e;
            padding-bottom: 0.5rem;
            margin-top: 0.5rem;
        }
        h2 {
            font-size: 2.0rem;
            border-left: 6px solid #c8a84e;
            padding-left: 1rem;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #1f5e3f;
            margin-top: 2.2rem;
        }
        h4 {
            font-size: 1.2rem;
            color: #2d7a4e;
            margin-top: 1.6rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
            color: #2d2d2d;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #0f2a1e 0%, #1a3a2a 100%);
            color: #fff;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
        }
        .header-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: #f5e6c8;
            letter-spacing: 4px;
            text-transform: uppercase;
            text-decoration: none;
            background: linear-gradient(135deg, #c8a84e, #f5e6c8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.2s;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #c8a84e;
            margin-right: 4px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f5e6c8;
            font-size: 2rem;
            cursor: pointer;
            padding: 0 8px;
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.8rem 1.6rem;
        }
        .nav-menu a {
            color: #e8dfd0;
            font-weight: 500;
            font-size: 1rem;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .nav-menu a:hover {
            color: #c8a84e;
            border-bottom-color: #c8a84e;
            text-decoration: none;
        }
        .breadcrumb {
            background: #e8e0d5;
            padding: 0.6rem 0;
            font-size: 0.92rem;
            color: #4a4a4a;
            border-bottom: 1px solid #d6cdc0;
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
        }
        .breadcrumb a {
            color: #1a6b4a;
            font-weight: 500;
        }
        .breadcrumb a:hover {
            color: #c8a84e;
        }
        .breadcrumb span {
            color: #6a5a4a;
        }
        .hero {
            background: linear-gradient(135deg, #1a3a2a 0%, #2d5a3e 100%);
            color: #fff;
            padding: 3rem 0 2.8rem;
            border-bottom: 6px solid #c8a84e;
        }
        .hero h1 {
            color: #f5e6c8;
            border-bottom: none;
            font-size: 3rem;
            margin-top: 0;
        }
        .hero p {
            color: #ddd6c8;
            font-size: 1.2rem;
            max-width: 800px;
        }
        .hero .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 1.8rem;
            margin-top: 1.2rem;
            font-size: 0.95rem;
            color: #c8b89a;
        }
        .hero .meta-info i {
            margin-right: 6px;
            color: #c8a84e;
        }
        .section-card {
            background: #fff;
            border-radius: 18px;
            padding: 2rem 2.2rem;
            margin: 2.5rem 0;
            box-shadow: 0 6px 28px rgba(0, 0, 0, 0.06);
            border: 1px solid #eae3d8;
            transition: box-shadow 0.3s;
        }
        .section-card:hover {
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.09);
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.8rem;
            margin: 2rem 0;
        }
        .feature-item {
            background: #faf6f0;
            padding: 1.6rem 1.6rem 1.8rem;
            border-radius: 16px;
            border-left: 5px solid #c8a84e;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .feature-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 26px rgba(0, 0, 0, 0.07);
        }
        .feature-item i {
            font-size: 2rem;
            color: #c8a84e;
            margin-bottom: 0.8rem;
        }
        .feature-item h4 {
            margin-top: 0.2rem;
            margin-bottom: 0.5rem;
            color: #1a3a2a;
        }
        .feature-item p {
            font-size: 0.98rem;
            color: #4a4a4a;
        }
        .highlight-box {
            background: #f0ebe2;
            border-radius: 14px;
            padding: 1.8rem 2rem;
            margin: 2rem 0;
            border-left: 8px solid #c8a84e;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.6rem 0;
            font-size: 0.98rem;
        }
        .data-table th {
            background: #1a3a2a;
            color: #f5e6c8;
            padding: 0.8rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #e0d8cc;
        }
        .data-table tr:nth-child(even) {
            background: #f8f4ee;
        }
        .data-table tr:hover td {
            background: #ede6db;
        }
        .tip-list {
            list-style: none;
            padding-left: 0;
        }
        .tip-list li {
            padding: 0.7rem 0 0.7rem 2.2rem;
            position: relative;
            border-bottom: 1px dashed #e0d8cc;
        }
        .tip-list li::before {
            content: "⚡";
            position: absolute;
            left: 0;
            top: 0.7rem;
            font-size: 1.2rem;
        }
        .tip-list li:last-child {
            border-bottom: none;
        }
        .interview-block {
            background: #f5f0e8;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin: 1.8rem 0;
            border: 1px solid #ddd6c8;
            font-style: italic;
        }
        .interview-block .attribution {
            text-align: right;
            font-weight: 600;
            font-style: normal;
            color: #1a6b4a;
            margin-top: 1rem;
        }
        .img-wrapper {
            margin: 2rem 0;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            background: #e8e0d5;
            text-align: center;
        }
        .img-wrapper img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .img-wrapper .caption {
            padding: 0.6rem 1rem;
            font-size: 0.9rem;
            color: #6a5a4a;
            background: #e8e0d5;
        }
        .interactive-forms {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2.5rem 0;
        }
        @media (max-width:768px) {
            .interactive-forms {
                grid-template-columns: 1fr;
            }
        }
        .form-card {
            background: #fff;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
            border: 1px solid #eae3d8;
        }
        .form-card h3 {
            margin-top: 0;
            color: #1a3a2a;
            font-size: 1.4rem;
            border-bottom: 2px solid #f0ebe2;
            padding-bottom: 0.6rem;
            margin-bottom: 1.2rem;
        }
        .form-card input,
        .form-card textarea,
        .form-card select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #ddd6c8;
            border-radius: 10px;
            font-size: 1rem;
            background: #faf8f5;
            transition: 0.2s;
            margin-bottom: 1rem;
            font-family: inherit;
        }
        .form-card input:focus,
        .form-card textarea:focus,
        .form-card select:focus {
            border-color: #c8a84e;
            outline: none;
            background: #fff;
            box-shadow: 0 0 0 4px rgba(200, 168, 78, 0.15);
        }
        .form-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .form-card .btn {
            background: #1a3a2a;
            color: #f5e6c8;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .form-card .btn:hover {
            background: #2d5a3e;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(26, 58, 42, 0.3);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            margin-bottom: 1rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #ccc;
            cursor: pointer;
            transition: 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5b342;
        }
        friend-link {
            display: block;
            background: #f0ebe2;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin: 2rem 0 1rem;
            border: 1px solid #ddd6c8;
        }
        friend-link .friend-list {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem 2rem;
            list-style: none;
            padding: 0;
            margin: 0.8rem 0 0;
        }
        friend-link .friend-list li a {
            font-weight: 500;
            color: #1a6b4a;
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            transition: 0.2s;
        }
        friend-link .friend-list li a:hover {
            background: #c8a84e20;
            color: #1a3a2a;
            text-decoration: none;
        }
        friend-link .fl-title {
            font-weight: 700;
            font-size: 1.1rem;
            color: #1a3a2a;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .site-footer {
            background: #0f2a1e;
            color: #c8b89a;
            padding: 2.5rem 0 1.8rem;
            margin-top: 3rem;
            border-top: 6px solid #c8a84e;
        }
        .site-footer .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }
        .site-footer .copyright {
            font-size: 0.92rem;
            color: #a89a82;
        }
        .site-footer .copyright strong {
            color: #f5e6c8;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .hero h1 {
                font-size: 2.1rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 1rem 0 0.5rem;
                gap: 0.5rem;
                border-top: 1px solid #2d5a3e;
                margin-top: 0.8rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                font-size: 1.05rem;
                padding: 0.4rem 0;
            }
            .section-card {
                padding: 1.4rem 1.2rem;
            }
            .feature-grid {
                grid-template-columns: 1fr;
            }
            .interactive-forms {
                grid-template-columns: 1fr;
            }
            .site-footer .container {
                flex-direction: column;
                text-align: center;
            }
            .breadcrumb .container {
                font-size: 0.82rem;
            }
            .data-table {
                font-size: 0.85rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.5rem 0.6rem;
            }
            .hero .meta-info {
                flex-direction: column;
                gap: 0.6rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .section-card {
                padding: 1rem 0.8rem;
            }
            .form-card {
                padding: 1.2rem 1rem;
            }
            .my-logo {
                font-size: 1.6rem;
            }
        }
        .text-accent {
            color: #c8a84e;
        }
        .fw-bold {
            font-weight: 700;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-between {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }
        .gap-2 {
            gap: 2rem;
        }
        .emoji-lg {
            font-size: 1.8rem;
            vertical-align: middle;
        }
        .badge {
            display: inline-block;
            background: #c8a84e;
            color: #1a3a2a;
            font-weight: 600;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            font-size: 0.85rem;
        }
