        *,
        *::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, 'Helvetica Neue', sans-serif;
            background: #f8f5ee;
            color: #2c2c2c;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #2d5016;
            text-decoration: underline;
            transition: color 0.2s;
        }
        a:hover {
            color: #c9a84c;
            text-decoration: none;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #1f3b0e, #2d5016);
            padding: 12px 0;
            border-bottom: 4px solid #c9a84c;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: #f8f5ee;
            text-decoration: none;
            text-shadow: 2px 2px 0 #1f3b0e;
            transition: opacity 0.2s;
        }
        .my-logo:hover {
            opacity: 0.85;
            color: #f8f5ee;
            text-decoration: none;
        }
        .my-logo span {
            color: #c9a84c;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f8f5ee;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 12px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .nav-menu {
            display: flex;
            gap: 8px 20px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            color: #f8f5ee;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 10px;
            border-radius: 6px;
            transition: background 0.2s, color 0.2s;
        }
        .nav-menu a:hover {
            background: rgba(255, 255, 255, 0.15);
            color: #c9a84c;
            text-decoration: none;
        }
        .nav-menu a i {
            margin-right: 6px;
        }
        .breadcrumbs {
            padding: 14px 0 6px;
            font-size: 0.85rem;
            color: #6a6a6a;
        }
        .breadcrumbs ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumbs li+li::before {
            content: "›";
            margin-right: 12px;
            color: #b0a08a;
            font-weight: 700;
        }
        .breadcrumbs a {
            color: #2d5016;
            text-decoration: none;
        }
        .breadcrumbs a:hover {
            text-decoration: underline;
        }
        .breadcrumbs .current {
            color: #8b6f4c;
            font-weight: 600;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #1f3b0e;
            margin: 1.2rem 0 0.6rem;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #2d5016;
            margin: 2.4rem 0 0.8rem;
            padding-bottom: 6px;
            border-bottom: 3px solid #c9a84c;
            display: inline-block;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #3d6b1e;
            margin: 1.8rem 0 0.6rem;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #5a3d1c;
            margin: 1.4rem 0 0.4rem;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        .lead {
            font-size: 1.25rem;
            font-weight: 400;
            color: #3d3d3d;
            border-left: 4px solid #c9a84c;
            padding-left: 20px;
            margin: 1.6rem 0;
        }
        strong {
            color: #1f3b0e;
        }
        em {
            color: #7a5a2e;
        }
        .hero-img {
            margin: 2rem 0 1.5rem;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
            background: #e4dbcc;
        }
        .hero-img img {
            width: 100%;
            aspect-ratio: 1200/500;
            object-fit: cover;
        }
        .hero-caption {
            font-size: 0.9rem;
            color: #6a6a6a;
            text-align: center;
            padding: 8px 0 0;
            font-style: italic;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
            margin: 2rem 0;
        }
        .card {
            background: #fffffffa;
            border-radius: 16px;
            padding: 24px 20px;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
            border: 1px solid #ece3d6;
            transition: transform 0.25s, box-shadow 0.3s;
        }
        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
        }
        .card h4 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .card i {
            color: #c9a84c;
            font-size: 1.8rem;
            margin-bottom: 10px;
            display: inline-block;
        }
        .form-surface {
            background: #fffffffa;
            border-radius: 20px;
            padding: 28px 30px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
            border: 1px solid #ece3d6;
            margin: 2rem 0;
        }
        .form-surface label {
            font-weight: 600;
            display: block;
            margin: 14px 0 4px;
            color: #2d5016;
        }
        .form-surface input,
        .form-surface textarea,
        .form-surface select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #ddd6ca;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            background: #fcfaf6;
            transition: border 0.2s;
        }
        .form-surface input:focus,
        .form-surface textarea:focus {
            border-color: #c9a84c;
            outline: none;
            background: #fff;
        }
        .form-surface textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn {
            display: inline-block;
            padding: 12px 32px;
            border: none;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            background: #2d5016;
            color: #f8f5ee;
            margin-top: 14px;
        }
        .btn:hover {
            background: #1f3b0e;
            transform: scale(1.02);
        }
        .btn i {
            margin-right: 8px;
        }
        .btn-secondary {
            background: #c9a84c;
            color: #1f3b0e;
        }
        .btn-secondary:hover {
            background: #b8942e;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            margin: 10px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #ddd6ca;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #c9a84c;
        }
        .comment-item {
            padding: 16px 0;
            border-bottom: 1px solid #ece3d6;
        }
        .comment-item:last-child {
            border-bottom: none;
        }
        .comment-author {
            font-weight: 700;
            color: #2d5016;
        }
        .comment-date {
            font-size: 0.8rem;
            color: #9a8a7a;
            margin-left: 12px;
        }
        .comment-text {
            margin: 6px 0 0;
        }
        friend-link {
            display: block;
            padding: 40px 0 20px;
        }
        friend-link ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            justify-content: center;
        }
        friend-link li a {
            color: #2d5016;
            font-weight: 500;
            text-decoration: none;
            padding: 6px 16px;
            border-radius: 30px;
            background: #ece3d6;
            transition: background 0.2s, color 0.2s;
        }
        friend-link li a:hover {
            background: #2d5016;
            color: #f8f5ee;
            text-decoration: none;
        }
        .site-footer {
            background: #1f3b0e;
            color: #ddd6ca;
            padding: 30px 0 20px;
            margin-top: 40px;
            text-align: center;
            font-size: 0.9rem;
        }
        .site-footer a {
            color: #c9a84c;
            text-decoration: none;
        }
        .site-footer a:hover {
            text-decoration: underline;
        }
        .site-footer .copyright {
            margin-top: 12px;
            font-size: 0.8rem;
            opacity: 0.8;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 16px 0 8px;
                gap: 4px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 10px 14px;
                font-size: 1rem;
                border-radius: 8px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .header-inner {
                padding: 0 4px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .form-surface {
                padding: 20px 16px;
            }
            .hero-img img {
                aspect-ratio: 4/3;
            }
        }
        @media (min-width: 769px) {
            .nav-menu {
                display: flex !important;
            }
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .text-center {
            text-align: center;
        }
        .badge {
            display: inline-block;
            background: #c9a84c;
            color: #1f3b0e;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 2px 12px;
            border-radius: 30px;
            letter-spacing: 0.3px;
        }
        .divider {
            height: 3px;
            background: linear-gradient(90deg, transparent, #c9a84c, transparent);
            margin: 2.4rem 0;
            opacity: 0.4;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.6rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        th {
            background: #2d5016;
            color: #f8f5ee;
            padding: 12px 16px;
            text-align: left;
        }
        td {
            padding: 10px 16px;
            border-bottom: 1px solid #ece3d6;
        }
        tr:hover td {
            background: #f4efe7;
        }
        .fa-ul li {
            margin-bottom: 8px;
        }
