        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #f5f3ef;
            color: #2d2a24;
            line-height: 1.7;
            padding: 0 16px;
        }
        a {
            color: #2e6b3c;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #4a9e5e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin-bottom: 1rem;
        }
        h1,
        h2,
        h3,
        h4 {
            line-height: 1.3;
            margin-top: 1.2em;
            margin-bottom: 0.5em;
            color: #1e3a2a;
        }
        h1 {
            font-size: 2.2rem;
            border-bottom: 3px solid #b58b5c;
            padding-bottom: 0.3em;
        }
        h2 {
            font-size: 1.7rem;
            border-left: 5px solid #b58b5c;
            padding-left: 0.7em;
        }
        h3 {
            font-size: 1.3rem;
            color: #3d5e3d;
        }
        h4 {
            font-size: 1.1rem;
            color: #4f6b4f;
        }
        p {
            margin-bottom: 1.2rem;
        }
        strong {
            color: #2d4a2d;
        }
        blockquote {
            border-left: 4px solid #b58b5c;
            background: #ede9e0;
            padding: 0.8rem 1.2rem;
            margin: 1.2rem 0;
            border-radius: 0 8px 8px 0;
            font-style: italic;
        }
        .container {
            max-width: 1180px;
            margin: 0 auto;
            background: #fffcf9;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
            border-radius: 20px;
            padding: 20px 28px 30px;
            margin-top: 18px;
            margin-bottom: 30px;
        }
        header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0 10px;
            border-bottom: 2px solid #e2d7ca;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 700;
            color: #1e3a2a;
            letter-spacing: 1px;
            background: linear-gradient(145deg, #2a5a3a, #1d3a2a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #b58b5c;
            margin-right: 6px;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        nav#main-nav {
            display: flex;
            gap: 8px 16px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav#main-nav a {
            font-weight: 500;
            padding: 6px 10px;
            border-radius: 30px;
            font-size: 0.95rem;
            color: #2d4a2d;
        }
        nav#main-nav a:hover {
            background: #e2d7ca;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #2d4a2d;
            cursor: pointer;
            padding: 4px 10px;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            font-size: 0.85rem;
            color: #6b6b6b;
            padding: 12px 0 6px;
            display: flex;
            flex-wrap: wrap;
            gap: 4px 8px;
        }
        .breadcrumb a {
            color: #5a7a5a;
        }
        .breadcrumb span.sep {
            color: #aaa;
        }
        .search-wrap {
            display: flex;
            max-width: 480px;
            margin: 18px 0 12px;
            border-radius: 40px;
            overflow: hidden;
            border: 1px solid #d6cdbf;
            background: #fff;
        }
        .search-wrap input {
            flex: 1;
            border: none;
            padding: 12px 18px;
            font-size: 0.95rem;
            outline: none;
            background: transparent;
        }
        .search-wrap button {
            background: #2e6b3c;
            border: none;
            color: #fff;
            padding: 0 22px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        .search-wrap button:hover {
            background: #1f4f2a;
        }
        .toc {
            background: #f2ede6;
            border-radius: 14px;
            padding: 18px 24px;
            margin: 20px 0 28px;
            border: 1px solid #e0d5c6;
        }
        .toc h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .toc ul {
            columns: 2 240px;
            list-style: none;
            padding-left: 0;
            margin-bottom: 0;
        }
        .toc li {
            padding: 4px 0;
        }
        .toc li a {
            display: inline-block;
            padding: 2px 0;
        }
        .info-card {
            background: #f8f5f0;
            border-radius: 16px;
            padding: 18px 22px;
            margin: 24px 0;
            border-left: 6px solid #b58b5c;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
        }
        .info-card h4 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .gift-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 14px;
            margin: 18px 0;
        }
        .gift-item {
            background: #fff;
            border-radius: 12px;
            padding: 14px 16px;
            border: 1px solid #e2d7ca;
            text-align: center;
        }
        .gift-item i {
            font-size: 1.4rem;
            color: #b58b5c;
        }
        .gift-item span {
            display: block;
            font-weight: 600;
            margin-top: 4px;
        }
        .schedule-table {
            width: 100%;
            border-collapse: collapse;
            margin: 18px 0;
            font-size: 0.92rem;
        }
        .schedule-table th {
            background: #2d5a3a;
            color: #fff;
            padding: 10px 12px;
            text-align: left;
        }
        .schedule-table td {
            border-bottom: 1px solid #e2d7ca;
            padding: 10px 12px;
            vertical-align: top;
        }
        .schedule-table tr:nth-child(even) {
            background: #faf7f2;
        }
        .comment-section,
        .rating-section {
            background: #f8f5f0;
            border-radius: 16px;
            padding: 22px 26px;
            margin: 30px 0 20px;
            border: 1px solid #e0d5c6;
        }
        .comment-section h3,
        .rating-section h3 {
            margin-top: 0;
        }
        .comment-section form,
        .rating-section form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 12px;
        }
        .comment-section input,
        .comment-section textarea,
        .rating-section select,
        .rating-section input {
            padding: 12px 16px;
            border: 1px solid #d6cdbf;
            border-radius: 10px;
            font-size: 0.95rem;
            background: #fff;
            width: 100%;
        }
        .comment-section textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-section button,
        .rating-section button {
            align-self: flex-start;
            background: #2e6b3c;
            color: #fff;
            border: none;
            padding: 12px 32px;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .comment-section button:hover,
        .rating-section button:hover {
            background: #1f4f2a;
        }
        .star-display {
            display: flex;
            gap: 4px;
            font-size: 1.6rem;
            color: #d4a96a;
        }
        friend-link {
            display: block;
            padding: 8px 0;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 10px;
            background: #ede9e0;
            border-radius: 30px;
            font-size: 0.9rem;
        }
        friend-link a:hover {
            background: #d6cdbf;
            text-decoration: none;
        }
        footer {
            border-top: 2px solid #e2d7ca;
            padding: 24px 0 10px;
            margin-top: 32px;
            font-size: 0.9rem;
            color: #4a4a4a;
        }
        footer .copyright {
            text-align: center;
            padding-top: 14px;
            font-size: 0.85rem;
            color: #6b6b6b;
        }
        @media (max-width: 820px) {
            .container {
                padding: 14px 16px 20px;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .hamburger {
                display: block;
            }
            nav#main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 12px 0 6px;
                gap: 4px;
            }
            #nav-toggle:checked~nav#main-nav {
                display: flex;
            }
            .toc ul {
                columns: 1;
            }
            .gift-grid {
                grid-template-columns: 1fr 1fr;
            }
            .schedule-table {
                font-size: 0.8rem;
            }
            .schedule-table th,
            .schedule-table td {
                padding: 6px 8px;
            }
        }
        @media (max-width: 480px) {
            .gift-grid {
                grid-template-columns: 1fr;
            }
            .search-wrap {
                flex-direction: column;
                border-radius: 20px;
            }
            .search-wrap button {
                padding: 12px;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
        }
        .text-center {
            text-align: center;
        }
        .mt-1 {
            margin-top: 0.8rem;
        }
        .mb-1 {
            margin-bottom: 0.8rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .badge {
            display: inline-block;
            background: #b58b5c;
            color: #fff;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.3px;
        }
        .last-updated {
            color: #6b6b6b;
            font-size: 0.85rem;
            text-align: right;
            border-top: 1px solid #e2d7ca;
            padding-top: 10px;
            margin-top: 20px;
        }
