        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #fdf8f0;
            color: #2d1b0e;
            line-height: 1.7;
            padding: 0 16px;
            max-width: 1200px;
            margin: 0 auto;
        }
        a {
            color: #b8478a;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #7a2d5c;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin: 0.8rem 0;
        }
        li {
            margin-bottom: 0.3rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.3;
            color: #3d1f0e;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 3px solid #f5c6d0;
            padding-bottom: 0.3rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #5e2c1a;
        }
        h4 {
            font-size: 1.15rem;
            color: #7a3f2a;
        }
        p {
            margin: 0.8rem 0;
            font-size: 1.05rem;
        }
        strong {
            color: #b8478a;
            font-weight: 700;
        }
        .container {
            background: #ffffff;
            border-radius: 24px;
            padding: 24px 28px;
            margin: 20px 0 40px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
        }
        header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0 8px;
            border-bottom: 2px solid #f0d4dc;
            position: relative;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(135deg, #f7a1c4, #b8478a, #6f2b59);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            text-shadow: none;
            display: inline-block;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            -webkit-text-fill-color: transparent;
        }
        .my-logo small {
            font-size: 0.8rem;
            -webkit-text-fill-color: #7a3f2a;
            color: #7a3f2a;
            display: block;
            font-weight: 400;
            letter-spacing: 0.3px;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        nav a {
            padding: 6px 14px;
            border-radius: 40px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #3d1f0e;
            background: transparent;
            transition: background 0.2s, color 0.2s;
        }
        nav a:hover {
            background: #f5c6d0;
            color: #6f2b59;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.6rem;
            background: none;
            border: none;
            color: #3d1f0e;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #f5c6d0;
        }
        #navToggle {
            display: none;
        }
        #navToggle:checked~.nav-links {
            display: flex;
            flex-direction: column;
            width: 100%;
            background: #fff8f5;
            padding: 12px 0 16px;
            border-radius: 0 0 16px 16px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
            margin-top: 12px;
        }
        #navToggle:checked~.nav-links a {
            padding: 10px 20px;
            border-radius: 0;
        }
        #navToggle:checked~.hamburger .fa-bars {
            display: none;
        }
        #navToggle:checked~.hamburger .fa-times {
            display: inline-block;
        }
        .hamburger .fa-times {
            display: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 12px 0 4px;
            margin: 0;
            font-size: 0.9rem;
            color: #8a6a5a;
        }
        .breadcrumb li+li::before {
            content: "›";
            padding: 0 10px;
            color: #c9a99a;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #8a6a5a;
        }
        .breadcrumb a:hover {
            color: #b8478a;
        }
        .breadcrumb .active {
            color: #3d1f0e;
            font-weight: 600;
        }
        .search-box {
            display: flex;
            max-width: 600px;
            margin: 20px 0 16px;
            border-radius: 60px;
            overflow: hidden;
            border: 2px solid #f0d4dc;
            background: #fff;
            transition: border-color 0.2s;
        }
        .search-box:focus-within {
            border-color: #b8478a;
        }
        .search-box input {
            flex: 1;
            border: none;
            padding: 12px 20px;
            font-size: 1rem;
            outline: none;
            background: transparent;
            min-width: 0;
        }
        .search-box button {
            background: #b8478a;
            border: none;
            color: #fff;
            padding: 0 24px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        .search-box button:hover {
            background: #7a2d5c;
        }
        .hero-img {
            margin: 20px 0 28px;
            border-radius: 16px;
            overflow: hidden;
            background: linear-gradient(135deg, #fce4ec, #f8d0d8);
            padding: 20px 20px 0;
            text-align: center;
        }
        .hero-img img {
            border-radius: 12px;
            width: 100%;
            max-width: 700px;
            margin: 0 auto;
        }
        .hero-img figcaption {
            padding: 10px 0 16px;
            font-size: 0.9rem;
            color: #6f4a3a;
            font-style: italic;
        }
        .user-feedback {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 32px 0 20px;
            background: #fcf6f2;
            padding: 20px 24px;
            border-radius: 16px;
            border: 1px solid #f0d4dc;
        }
        .feedback-section h3 {
            margin-top: 0;
            font-size: 1.2rem;
        }
        .feedback-section form {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .feedback-section input,
        .feedback-section textarea,
        .feedback-section select {
            padding: 10px 14px;
            border: 1.5px solid #e0c8c0;
            border-radius: 10px;
            font-size: 0.95rem;
            background: #fff;
            transition: border-color 0.2s;
            font-family: inherit;
        }
        .feedback-section input:focus,
        .feedback-section textarea:focus,
        .feedback-section select:focus {
            border-color: #b8478a;
            outline: none;
        }
        .feedback-section textarea {
            min-height: 70px;
            resize: vertical;
        }
        .feedback-section .btn {
            background: #b8478a;
            color: #fff;
            border: none;
            padding: 10px 20px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            align-self: flex-start;
        }
        .feedback-section .btn:hover {
            background: #7a2d5c;
            transform: scale(1.01);
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.6rem;
            color: #f5c6d0;
            cursor: pointer;
            direction: rtl;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            transition: color 0.2s, transform 0.1s;
            cursor: pointer;
        }
        .rating-stars label:hover,
        .rating-stars label:hover~label,
        .rating-stars input:checked~label {
            color: #f7b731;
            transform: scale(1.1);
        }
        footer {
            margin: 40px 0 20px;
            padding: 24px 0 16px;
            border-top: 2px solid #f0d4dc;
            text-align: center;
            font-size: 0.9rem;
            color: #6f4a3a;
        }
        friend-link {
            display: block;
            padding: 12px 0 8px;
            font-weight: 500;
        }
        friend-link a {
            margin: 0 12px;
            color: #b8478a;
        }
        friend-link a:hover {
            color: #7a2d5c;
        }
        .copyright {
            margin-top: 12px;
            font-size: 0.85rem;
            color: #8a6a5a;
            border-top: 1px solid #f0d4dc;
            padding-top: 16px;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 16px 0;
            font-size: 0.95rem;
            border-radius: 12px;
            overflow: hidden;
        }
        .data-table th,
        .data-table td {
            padding: 10px 14px;
            text-align: left;
            border-bottom: 1px solid #f0d4dc;
        }
        .data-table th {
            background: #f5c6d0;
            color: #3d1f0e;
            font-weight: 700;
        }
        .data-table tr:nth-child(even) {
            background: #fdf8f0;
        }
        .data-table tr:hover {
            background: #fce4ec;
        }
        blockquote {
            border-left: 5px solid #b8478a;
            background: #fcf6f2;
            padding: 12px 20px;
            margin: 16px 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #4a2a1a;
        }
        blockquote strong {
            color: #3d1f0e;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 10px;
            }
            .container {
                padding: 16px 14px;
                border-radius: 16px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .user-feedback {
                grid-template-columns: 1fr;
                gap: 18px;
                padding: 16px;
            }
            .my-logo {
                font-size: 1.6rem;
            }
            .hamburger {
                display: block;
            }
            .nav-links {
                display: none;
                width: 100%;
            }
            .nav-links a {
                width: 100%;
                text-align: left;
                padding: 10px 16px;
            }
            .search-box {
                max-width: 100%;
            }
            .data-table {
                font-size: 0.85rem;
            }
            .data-table th,
            .data-table td {
                padding: 6px 8px;
            }
            .rating-stars {
                font-size: 1.3rem;
            }
            header {
                align-items: center;
            }
        }
        @media (min-width: 769px) {
            .nav-links {
                display: flex !important;
                flex-direction: row;
                gap: 4px;
            }
            #navToggle {
                display: none !important;
            }
            .hamburger {
                display: none !important;
            }
        }
        .text-muted {
            color: #8a6a5a;
        }
        .text-small {
            font-size: 0.9rem;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }
        .badge {
            display: inline-block;
            background: #f5c6d0;
            color: #3d1f0e;
            padding: 2px 12px;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .last-updated {
            display: inline-block;
            background: #f0d4dc;
            padding: 4px 16px;
            border-radius: 40px;
            font-size: 0.85rem;
            color: #3d1f0e;
            margin: 8px 0 12px;
        }
        .fa-ul li {
            margin-bottom: 0.5rem;
        }
