        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f5f3ef;
            color: #2d2a24;
            line-height: 1.7;
            padding: 0 16px;
            max-width: 1280px;
            margin: 0 auto;
        }
        a {
            color: #2e6b3e;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #1f4d2c;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 600;
            line-height: 1.3;
            letter-spacing: -0.01em;
            color: #1e3a2a;
        }
        h1 {
            font-size: 2.4rem;
            margin: 0.5rem 0 1rem;
        }
        h2 {
            font-size: 1.8rem;
            margin: 2.2rem 0 1rem;
            border-bottom: 3px solid #c8b99b;
            padding-bottom: 0.35rem;
        }
        h3 {
            font-size: 1.35rem;
            margin: 1.8rem 0 0.6rem;
            color: #2a4d3a;
        }
        h4 {
            font-size: 1.1rem;
            margin: 1.2rem 0 0.4rem;
            color: #3d5e4a;
        }
        p {
            margin: 0 0 1.2rem;
            font-size: 1.05rem;
            color: #3a342c;
        }
        ul,
        ol {
            margin: 0 0 1.5rem 1.8rem;
            font-size: 1.05rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        strong {
            color: #1e3a2a;
            font-weight: 700;
        }
        em {
            font-style: italic;
            color: #5a4e3c;
        }
        .container {
            background: #fffcf9;
            border-radius: 24px;
            padding: 20px 24px 40px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            margin: 16px 0 40px;
        }
        @media(min-width:768px) {
            .container {
                padding: 32px 48px 60px;
            }
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0 12px;
            border-bottom: 2px solid #e3d9cc;
            margin-bottom: 6px;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 700;
            color: #1e4a2a;
            letter-spacing: -0.5px;
            background: linear-gradient(145deg, #2d6b3e, #1a3d28);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none !important;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none !important;
        }
        .my-logo i {
            -webkit-text-fill-color: #2d6b3e;
            font-size: 1.7rem;
        }
        .nav-bar {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .nav-links {
            display: flex;
            gap: 4px 12px;
            flex-wrap: wrap;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .nav-links li a {
            padding: 6px 12px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #2d4a32;
            background: transparent;
            transition: background 0.2s, color 0.2s;
        }
        .nav-links li a:hover {
            background: #e3d9cc;
            color: #1a3d28;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #2d4a32;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #e3d9cc;
        }
        #nav-toggle {
            display: none;
        }
        @media(max-width:767px) {
            .hamburger {
                display: inline-block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #fffcf9;
                padding: 12px 0 8px;
                border-top: 1px solid #e3d9cc;
                margin-top: 8px;
                gap: 2px;
            }
            .nav-links li a {
                display: block;
                padding: 10px 16px;
                font-size: 1rem;
            }
            #nav-toggle:checked~.nav-links {
                display: flex;
            }
            .site-header {
                flex-wrap: wrap;
            }
            .hamburger {
                order: 2;
            }
            .my-logo {
                order: 1;
                flex: 1;
            }
            #nav-toggle {
                order: 3;
            }
            .nav-links {
                order: 4;
            }
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 8px 0 12px;
            margin: 0 0 6px;
            font-size: 0.9rem;
            color: #6a5e4e;
            gap: 4px 8px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 8px;
            color: #a89880;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #3d6b4a;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .current {
            color: #6a5e4e;
            font-weight: 500;
        }
        .search-box {
            display: flex;
            max-width: 520px;
            margin: 20px 0 24px;
            border-radius: 50px;
            overflow: hidden;
            border: 2px solid #d6cdbc;
            background: #fff;
            transition: border-color 0.2s;
        }
        .search-box:focus-within {
            border-color: #2e6b3e;
        }
        .search-box input[type="text"] {
            flex: 1;
            border: none;
            padding: 12px 20px;
            font-size: 1rem;
            background: transparent;
            outline: none;
            color: #2d2a24;
        }
        .search-box input[type="text"]::placeholder {
            color: #9a8e7a;
        }
        .search-box button {
            background: #2e6b3e;
            color: #fff;
            border: none;
            padding: 0 24px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .search-box button:hover {
            background: #1f4d2c;
        }
        .feature-img {
            margin: 24px 0 28px;
            border-radius: 16px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        }
        .feature-img figcaption {
            font-size: 0.9rem;
            color: #6a5e4e;
            text-align: center;
            margin-top: 8px;
            font-style: italic;
        }
        .info-card {
            background: #f0ebe2;
            border-radius: 16px;
            padding: 20px 24px;
            margin: 24px 0;
            border-left: 6px solid #2e6b3e;
        }
        .info-card h4 {
            margin-top: 0;
        }
        .gift-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px 20px;
            margin: 12px 0 18px;
        }
        @media(min-width:600px) {
            .gift-grid {
                grid-template-columns: 1fr 1fr 1fr;
            }
        }
        .gift-item {
            background: #fffcf9;
            border-radius: 10px;
            padding: 10px 14px;
            border: 1px solid #e3d9cc;
            font-size: 0.95rem;
        }
        .gift-item strong {
            display: block;
            font-size: 0.85rem;
            color: #6a5e4e;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .feedback-section {
            margin: 40px 0 20px;
            padding-top: 28px;
            border-top: 2px solid #e3d9cc;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
            margin: 20px 0 0;
        }
        @media(min-width:700px) {
            .feedback-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        .feedback-card {
            background: #f0ebe2;
            border-radius: 16px;
            padding: 20px 24px;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.2rem;
            border: none;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .feedback-card label {
            font-weight: 600;
            font-size: 0.95rem;
            color: #2d4a32;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 10px 14px;
            border: 2px solid #d6cdbc;
            border-radius: 10px;
            font-size: 1rem;
            background: #fffcf9;
            transition: border-color 0.2s;
            font-family: inherit;
            width: 100%;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #2e6b3e;
            outline: none;
        }
        .feedback-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .feedback-card .btn {
            background: #2e6b3e;
            color: #fff;
            border: none;
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            align-self: flex-start;
        }
        .feedback-card .btn:hover {
            background: #1f4d2c;
            transform: scale(1.02);
        }
        .star-select {
            display: flex;
            gap: 4px;
            font-size: 1.6rem;
            color: #d6cdbc;
            cursor: pointer;
        }
        .star-select i {
            transition: color 0.2s, transform 0.1s;
        }
        .star-select i:hover,
        .star-select i.active {
            color: #e8b84b;
            transform: scale(1.1);
        }
        .site-footer {
            margin: 40px 0 20px;
            padding: 24px 0 16px;
            border-top: 2px solid #e3d9cc;
            font-size: 0.95rem;
            color: #5a4e3c;
        }
        .footer-inner {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        @media(min-width:700px) {
            .footer-inner {
                flex-direction: row;
                justify-content: space-between;
                align-items: flex-start;
            }
        }
        friend-link {
            display: block;
            background: #f0ebe2;
            border-radius: 16px;
            padding: 16px 20px;
            margin: 4px 0 12px;
        }
        friend-link a {
            display: inline-block;
            margin: 0 12px 4px 0;
            padding: 2px 0;
            font-weight: 500;
        }
        .copyright {
            font-size: 0.88rem;
            color: #6a5e4e;
            margin-top: 12px;
            padding-top: 12px;
            border-top: 1px solid #e3d9cc;
        }
        .copyright strong {
            color: #2d4a32;
        }
        .badge {
            display: inline-block;
            background: #2e6b3e;
            color: #fff;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.3px;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #6a5e4e;
            margin: 4px 0 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .divider {
            height: 2px;
            background: linear-gradient(to right, #c8b99b, transparent);
            margin: 28px 0;
        }
        .emoji-big {
            font-size: 1.3rem;
        }
        @media(max-width:480px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .container {
                padding: 16px 14px 30px;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .gift-grid {
                grid-template-columns: 1fr;
            }
            .search-box {
                flex-direction: column;
                border-radius: 16px;
            }
            .search-box button {
                padding: 12px;
                justify-content: center;
                border-radius: 0 0 14px 14px;
            }
            .search-box input[type="text"] {
                padding: 12px 16px;
            }
        }
        @media(min-width:768px) and (max-width:1024px) {
            .container {
                padding: 28px 32px 50px;
            }
        }
        @media(prefers-reduced-motion:reduce) {
            html {
                scroll-behavior: auto;
            }
        }
