* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f9f7f4;
            color: #1e1e1e;
            line-height: 1.7;
            font-size: 17px;
            padding: 0 16px;
        }
        .wrapper {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.04);
            border-radius: 28px;
            padding: 20px 28px 40px;
            margin-top: 20px;
            margin-bottom: 40px;
        }
        header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0 18px;
            border-bottom: 2px solid #f0ede8;
            position: relative;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            text-decoration: none;
            color: #c4452b;
            background: linear-gradient(135deg, #c4452b, #e67e22);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            background: none;
            -webkit-text-fill-color: #c4452b;
            font-size: 1.8rem;
        }
        .my-logo:hover {
            opacity: 0.85;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #2d2d2d;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #f0ede8;
        }
        nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            text-decoration: none;
            color: #2d2d2d;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 40px;
            transition: all 0.2s;
            font-size: 0.95rem;
        }
        nav a:hover {
            background: #f0ede8;
            color: #c4452b;
        }
        nav a.active {
            background: #c4452b;
            color: #fff;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px 12px;
            padding: 16px 0 10px;
            font-size: 0.85rem;
            color: #6b6b6b;
            border-bottom: 1px solid #f0ede8;
            margin-bottom: 24px;
        }
        .breadcrumb a {
            text-decoration: none;
            color: #6b6b6b;
            transition: color 0.2s;
        }
        .breadcrumb a:hover {
            color: #c4452b;
        }
        .breadcrumb span {
            color: #2d2d2d;
            font-weight: 600;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.02em;
            color: #1e1e1e;
            margin-bottom: 12px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-top: 56px;
            margin-bottom: 16px;
            color: #1e1e1e;
            border-left: 6px solid #c4452b;
            padding-left: 20px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-top: 40px;
            margin-bottom: 12px;
            color: #2d2d2d;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-top: 28px;
            margin-bottom: 8px;
            color: #3d3d3d;
        }
        p {
            margin-bottom: 20px;
            color: #333;
        }
        strong {
            color: #1e1e1e;
            font-weight: 700;
        }
        .lead {
            font-size: 1.2rem;
            color: #444;
            border-left: 4px solid #e67e22;
            padding-left: 24px;
            margin-bottom: 32px;
        }
        .last-updated {
            display: inline-block;
            background: #f0ede8;
            padding: 6px 20px;
            border-radius: 40px;
            font-size: 0.85rem;
            color: #555;
            margin-bottom: 28px;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            margin: 24px 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            display: block;
        }
        .img-caption {
            font-size: 0.9rem;
            color: #777;
            text-align: center;
            margin-top: -16px;
            margin-bottom: 28px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 48px;
            margin-top: 8px;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            border-left: 1px solid #f0ede8;
            padding-left: 32px;
        }
        .sidebar-section {
            background: #faf8f5;
            border-radius: 20px;
            padding: 24px;
            margin-bottom: 28px;
        }
        .sidebar-section h3 {
            font-size: 1.2rem;
            margin-top: 0;
            border-bottom: 2px solid #e0d8d0;
            padding-bottom: 12px;
            margin-bottom: 16px;
        }
        .sidebar-section ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-section li {
            margin-bottom: 12px;
        }
        .sidebar-section a {
            text-decoration: none;
            color: #c4452b;
            font-weight: 500;
            transition: color 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar-section a:hover {
            color: #e67e22;
            text-decoration: underline;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0 32px;
            font-size: 0.95rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        th {
            background: #c4452b;
            color: #fff;
            font-weight: 600;
            padding: 14px 18px;
            text-align: left;
        }
        td {
            padding: 14px 18px;
            border-bottom: 1px solid #f0ede8;
            background: #fff;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #fdfaf7;
        }
        .form-card {
            background: #faf8f5;
            border-radius: 24px;
            padding: 28px 32px;
            margin: 32px 0;
        }
        .form-card h3 {
            margin-top: 0;
            font-size: 1.4rem;
        }
        .form-group {
            margin-bottom: 18px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 6px;
            color: #2d2d2d;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #e0d8d0;
            border-radius: 14px;
            font-size: 1rem;
            font-family: inherit;
            background: #fff;
            transition: border-color 0.2s, box-shadow 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #c4452b;
            box-shadow: 0 0 0 4px rgba(196, 69, 43, 0.08);
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn {
            background: #c4452b;
            color: #fff;
            border: none;
            padding: 14px 32px;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .btn:hover {
            background: #a53722;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(196, 69, 43, 0.25);
        }
        .btn-secondary {
            background: #f0ede8;
            color: #2d2d2d;
        }
        .btn-secondary:hover {
            background: #e0d8d0;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating i {
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating i:hover,
        .star-rating i:hover~i {
            color: #f1c40f;
            transform: scale(1.1);
        }
        .star-rating.active i.active-star {
            color: #f1c40f;
        }
        footer {
            margin-top: 60px;
            padding-top: 32px;
            border-top: 2px solid #f0ede8;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 32px;
        }
        friend-link {
            display: block;
            font-style: normal;
        }
        friend-link a {
            color: #c4452b;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s;
        }
        friend-link a:hover {
            color: #e67e22;
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            color: #888;
            font-size: 0.9rem;
            padding: 20px 0 8px;
            border-top: 1px solid #f0ede8;
        }
        .copyright strong {
            color: #555;
        }
        @media (max-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .sidebar {
                border-left: none;
                padding-left: 0;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .sidebar-section {
                margin-bottom: 0;
            }
        }
        @media (max-width: 768px) {
            .wrapper {
                padding: 12px 16px 30px;
                border-radius: 20px;
                margin-top: 12px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
                padding-left: 14px;
            }
            h3 {
                font-size: 1.25rem;
            }
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding-top: 16px;
                gap: 4px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 12px 18px;
                border-radius: 12px;
            }
            .breadcrumb {
                font-size: 0.78rem;
                gap: 4px 8px;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .form-card {
                padding: 20px;
            }
            table {
                font-size: 0.85rem;
            }
            th,
            td {
                padding: 10px 12px;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .star-rating {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 8px;
            }
            .wrapper {
                padding: 8px 10px 24px;
                border-radius: 16px;
            }
            h1 {
                font-size: 1.7rem;
            }
            .lead {
                font-size: 1rem;
                padding-left: 16px;
            }
            .btn {
                width: 100%;
                justify-content: center;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        ::selection {
            background: #c4452b;
            color: #fff;
        }
