        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #faf7f2;
            color: #1e2a3a;
            line-height: 1.7;
            padding: 0 1rem;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #b34a1c;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus {
            color: #7a2e0e;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.25;
            color: #1a2a3a;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.4rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 3px solid #d87c4b;
            padding-bottom: 0.25rem;
        }
        h3 {
            font-size: 1.35rem;
            color: #2c3e50;
        }
        h4 {
            font-size: 1.1rem;
            color: #3d5a6e;
            font-weight: 600;
        }
        p {
            margin-bottom: 1rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 0.5rem;
        }
        .site-header {
            background: linear-gradient(145deg, #1e2a3a 0%, #2c3e50 100%);
            color: #fff;
            padding: 0.8rem 1.2rem;
            border-radius: 0 0 18px 18px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
            position: relative;
            z-index: 100;
        }
        .header-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #f5d7b3;
            text-shadow: 2px 2px 0 #7a2e0e;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #ffd9b3;
        }
        .my-logo i {
            margin-right: 6px;
            color: #e8b88a;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #e8b88a;
            color: #e8b88a;
            font-size: 1.5rem;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(232, 184, 138, 0.15);
        }
        .main-nav {
            display: flex;
            gap: 0.8rem 1.6rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #f0e3d5;
            font-weight: 500;
            padding: 0.3rem 0.2rem;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
            font-size: 0.95rem;
        }
        .main-nav a:hover {
            border-bottom-color: #e8b88a;
            color: #ffd9b3;
            text-decoration: none;
        }
        .breadcrumb {
            background: #f0e8df;
            padding: 0.5rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            margin: 1rem 0 1.2rem 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            color: #4a5c6e;
        }
        .breadcrumb a {
            color: #b34a1c;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #7a8a9a;
        }
        .hero-image {
            border-radius: 20px;
            overflow: hidden;
            margin: 1.8rem 0 2.4rem 0;
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
            background: #d4c5b2;
            position: relative;
        }
        .hero-image img {
            width: 100%;
            max-height: 460px;
            object-fit: cover;
        }
        .hero-caption {
            background: rgba(26, 42, 58, 0.7);
            color: #fff;
            padding: 0.8rem 1.5rem;
            font-size: 0.95rem;
            text-align: center;
            backdrop-filter: blur(4px);
        }
        .form-card {
            background: #fff;
            border-radius: 18px;
            padding: 1.6rem 1.8rem;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
            margin: 2rem 0;
            border: 1px solid #e8ddd0;
        }
        .form-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .form-card input,
        .form-card textarea,
        .form-card select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #ddd6cb;
            border-radius: 10px;
            font-size: 1rem;
            transition: border-color 0.2s;
            background: #fefcf9;
            margin-bottom: 0.8rem;
            font-family: inherit;
        }
        .form-card input:focus,
        .form-card textarea:focus {
            border-color: #d87c4b;
            outline: none;
            background: #fff;
        }
        .form-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .form-card button {
            background: #d87c4b;
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .form-card button:hover {
            background: #b85f31;
            transform: translateY(-1px);
        }
        .form-row {
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #d4c5b2;
            cursor: pointer;
            direction: rtl;
            unicode-bidi: bidi-override;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #d4c5b2;
            transition: color 0.15s;
            cursor: pointer;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5b342;
        }
        .content-section {
            background: #fff;
            border-radius: 20px;
            padding: 2rem 2.2rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            margin: 1.8rem 0;
            border: 1px solid #efe6dc;
        }
        .content-section p {
            text-align: justify;
        }
        .content-section ul,
        .content-section ol {
            margin-bottom: 1rem;
        }
        .highlight-box {
            background: #f7efe7;
            border-left: 6px solid #d87c4b;
            padding: 1.2rem 1.6rem;
            border-radius: 0 14px 14px 0;
            margin: 1.4rem 0;
        }
        .highlight-box strong {
            color: #7a2e0e;
        }
        .insight-badge {
            display: inline-block;
            background: #1e2a3a;
            color: #f5d7b3;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .link-group {
            background: #f7efe7;
            border-radius: 16px;
            padding: 1.2rem 1.5rem;
            margin: 1.6rem 0;
        }
        .link-group h4 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .link-group ul {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 0.4rem 1rem;
        }
        .link-group li {
            padding: 0.2rem 0;
        }
        .link-group a {
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .link-group a i {
            font-size: 0.8rem;
            color: #b34a1c;
        }
        .comment-item {
            background: #f8f4ef;
            border-radius: 14px;
            padding: 1rem 1.4rem;
            margin: 0.8rem 0;
            border-left: 4px solid #d87c4b;
        }
        .comment-item strong {
            color: #1e2a3a;
        }
        .comment-item .meta {
            font-size: 0.8rem;
            color: #7a8a9a;
        }
        .site-footer {
            background: #1e2a3a;
            color: #ddd6cb;
            padding: 2rem 1.5rem 1.2rem;
            border-radius: 20px 20px 0 0;
            margin-top: 2.8rem;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.8rem 2rem;
        }
        .footer-inner h4 {
            color: #f5d7b3;
            margin-top: 0;
            border-bottom: 2px solid #3d5a6e;
            padding-bottom: 0.4rem;
        }
        .footer-inner a {
            color: #cdb8a3;
            display: block;
            padding: 0.2rem 0;
        }
        .footer-inner a:hover {
            color: #f5d7b3;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            margin-top: 1.5rem;
            border-top: 1px solid #3d5a6e;
            font-size: 0.85rem;
            color: #aab5c0;
        }
        friend-link {
            display: block;
            padding: 0.4rem 0;
        }
        friend-link a {
            display: inline-block;
            margin-right: 1.2rem;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 0.6rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .content-section {
                padding: 1.2rem 1rem;
            }
            .form-card {
                padding: 1.2rem 1rem;
            }
            .site-header {
                padding: 0.6rem 0.8rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .nav-toggle {
                display: inline-block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 1rem 0 0.4rem 0;
                gap: 0.4rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.5rem 0.8rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            }
            .breadcrumb {
                font-size: 0.75rem;
                padding: 0.4rem 0.8rem;
            }
            .hero-image img {
                max-height: 220px;
            }
            .link-group ul {
                grid-template-columns: 1fr 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
                gap: 1.2rem;
            }
        }
        @media (max-width: 480px) {
            .link-group ul {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
            }
            .form-row {
                flex-direction: column;
                align-items: stretch;
            }
            .star-rating {
                font-size: 1.3rem;
            }
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .text-muted {
            color: #6a7a8a;
            font-size: 0.9rem;
        }
        .last-updated {
            background: #e8ddd0;
            display: inline-block;
            padding: 0.2rem 1.2rem;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #3d4a5a;
        }
