* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f5f3f0;
            color: #1e1e1e;
            line-height: 1.7;
            padding: 0 16px;
        }
        a {
            color: #b45309;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #7b3f00;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
            margin: 24px 0;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }
        .container {
            max-width: 1140px;
            margin: 0 auto;
            background: #ffffff;
            padding: 20px 28px 40px;
            border-radius: 24px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0 12px;
            border-bottom: 2px solid #e8e0d6;
            position: relative;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #b45309, #d97706);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.85;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #b45309;
            cursor: pointer;
            padding: 4px 8px;
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 20px;
            list-style: none;
            align-items: center;
        }
        .nav-menu li a {
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 0;
            color: #3d3d3d;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .nav-menu li a:hover {
            border-bottom-color: #b45309;
            color: #b45309;
            text-decoration: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 14px;
            font-size: 0.85rem;
            padding: 12px 0 8px;
            color: #6b7280;
            border-bottom: 1px solid #eee8e0;
            margin-bottom: 20px;
        }
        .breadcrumb a {
            color: #b45309;
        }
        .breadcrumb span {
            color: #9ca3af;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 16px 0 12px;
            color: #1f1a16;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 48px 0 14px;
            padding-bottom: 6px;
            border-bottom: 3px solid #e8e0d6;
            color: #2d221c;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 32px 0 10px;
            color: #3d2e24;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 22px 0 8px;
            color: #4d3a2e;
        }
        p {
            margin: 0 0 18px;
            font-size: 1.05rem;
            color: #2a2520;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #8a7a6a;
            margin: 4px 0 18px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .last-updated i {
            color: #b45309;
        }
        .highlight-box {
            background: #fef9ee;
            padding: 20px 24px;
            border-left: 5px solid #d97706;
            border-radius: 10px;
            margin: 24px 0;
        }
        .highlight-box strong {
            color: #b45309;
        }
        .btn {
            display: inline-block;
            background: #b45309;
            color: #fff;
            padding: 10px 28px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.95rem;
            border: none;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
        }
        .btn:hover {
            background: #92400a;
            transform: scale(1.02);
            text-decoration: none;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #b45309;
            color: #b45309;
        }
        .btn-outline:hover {
            background: #b45309;
            color: #fff;
        }
        .form-card {
            background: #faf7f2;
            border-radius: 18px;
            padding: 24px 28px;
            margin: 32px 0;
            border: 1px solid #e8e0d6;
        }
        .form-card h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 16px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 4px;
            color: #3d2e24;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 10px 14px;
            border: 1px solid #d6cdc2;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            background: #fff;
            transition: border 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #b45309;
            box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.15);
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #d6cdc2;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating i {
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating i:hover,
        .star-rating i:hover~i {
            color: #d97706;
            transform: scale(1.1);
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #d6cdc2;
            transition: 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #d97706;
        }
        .star-rating input:checked~label {
            color: #d97706;
        }
        friend-link {
            display: block;
            padding: 18px 0 8px;
            font-size: 0.95rem;
            color: #3d2e24;
        }
        friend-link a {
            font-weight: 500;
            margin: 0 12px 0 0;
            display: inline-block;
        }
        .site-footer {
            border-top: 2px solid #e8e0d6;
            padding: 24px 0 12px;
            margin-top: 40px;
            font-size: 0.9rem;
            color: #6b7280;
            text-align: center;
        }
        .site-footer a {
            color: #b45309;
        }
        .site-footer .copyright {
            margin-top: 10px;
            font-size: 0.85rem;
            color: #8a7a6a;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 8px;
            }
            .container {
                padding: 12px 14px 30px;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 12px 0 8px;
                gap: 4px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                display: block;
                padding: 8px 0;
                font-size: 1rem;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
                margin-top: 32px;
            }
            h3 {
                font-size: 1.2rem;
            }
            h4 {
                font-size: 1.05rem;
            }
            p {
                font-size: 0.98rem;
            }
            .form-card {
                padding: 16px 18px;
            }
            .star-rating {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 8px 10px 24px;
            }
            h1 {
                font-size: 1.6rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
                gap: 4px 10px;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        .mt-2 {
            margin-top: 20px;
        }
        .mb-2 {
            margin-bottom: 20px;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
        @media (max-width: 600px) {
            .grid-2 {
                grid-template-columns: 1fr;
            }
        }
        .inline-icon {
            margin-right: 6px;
            color: #b45309;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 20px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 10px 14px;
            text-align: left;
            border-bottom: 1px solid #e8e0d6;
        }
        th {
            background: #faf7f2;
            font-weight: 600;
            color: #2d221c;
        }
        tr:hover td {
            background: #fefcf8;
        }
