        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, Arial, sans-serif;
            background: #f8f6f2;
            color: #1e2a3a;
            line-height: 1.75;
            padding: 0;
            margin: 0;
        }
        a {
            color: #b45a2e;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus {
            color: #7a3d1a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin-bottom: 1.2rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
            color: #1e3a3a;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 4px solid #d4a373;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 6px solid #d4a373;
            padding-left: 1rem;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #2c4a3e;
        }
        h4 {
            font-size: 1.15rem;
            color: #3d5a4a;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .badge {
            display: inline-block;
            background: #d4a373;
            color: #fff;
            font-size: 0.75rem;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-weight: 600;
            letter-spacing: 0.3px;
        }
        .highlight {
            background: #f3ece4;
            padding: 0.1rem 0.4rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
        .site-header {
            background: linear-gradient(135deg, #1e3a3a 0%, #2a5a4a 100%);
            color: #fff;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            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;
            gap: 0.5rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #f5e6d3;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            color: #d4a373;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            color: #ffd8b0;
            text-decoration: none;
        }
        .my-logo span {
            font-weight: 300;
            font-size: 0.9rem;
            color: #b8d4c8;
            letter-spacing: 0;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #d4a373;
            color: #d4a373;
            font-size: 1.5rem;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #d4a373;
            color: #1e3a3a;
        }
        .main-nav {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #e0eae4;
            padding: 0.4rem 0.9rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: 0.2s;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background: #d4a373;
            color: #1e3a3a;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 0.3rem;
        }
        .breadcrumb-wrap {
            background: #ede8df;
            padding: 0.5rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #ddd6cb;
        }
        .breadcrumb-wrap nav ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb-wrap nav ol li+li::before {
            content: "›";
            color: #b45a2e;
            margin-right: 0.6rem;
            font-weight: 700;
        }
        .breadcrumb-wrap a {
            color: #5a4a3a;
        }
        .breadcrumb-wrap .current {
            color: #1e3a3a;
            font-weight: 600;
        }
        .search-section {
            background: #fff;
            padding: 2rem 0;
            border-bottom: 1px solid #e8e0d6;
        }
        .search-form {
            display: flex;
            max-width: 640px;
            margin: 0 auto;
            gap: 0.5rem;
            border-radius: 60px;
            background: #f6f2ec;
            padding: 0.3rem;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        }
        .search-form input[type="text"] {
            flex: 1;
            border: none;
            background: transparent;
            padding: 0.8rem 1.2rem;
            font-size: 1rem;
            outline: none;
            color: #1e2a3a;
            min-width: 0;
        }
        .search-form input[type="text"]::placeholder {
            color: #8a7a6a;
            font-style: italic;
        }
        .search-form button {
            background: #d4a373;
            border: none;
            border-radius: 50px;
            padding: 0.7rem 1.6rem;
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.95rem;
            white-space: nowrap;
        }
        .search-form button:hover {
            background: #b88a5e;
        }
        .hero-image-wrap {
            margin: 2rem 0 3rem;
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }
        .hero-image-wrap img {
            width: 100%;
            max-height: 460px;
            object-fit: cover;
        }
        .hero-image-wrap .img-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(30, 58, 58, 0.85));
            color: #fff;
            padding: 2rem 1.5rem 1.2rem;
            font-size: 0.9rem;
            font-style: italic;
        }
        .content-area {
            background: #fff;
            padding: 2.5rem 0 3rem;
        }
        .content-area .container {
            max-width: 880px;
        }
        .content-area p,
        .content-area li {
            font-size: 1.05rem;
            color: #2a3a3a;
        }
        .content-area .lead {
            font-size: 1.2rem;
            font-weight: 400;
            color: #3d5a4a;
            border-left: 4px solid #d4a373;
            padding-left: 1.5rem;
            margin-bottom: 2rem;
        }
        .price-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            font-size: 0.95rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
        }
        .price-table th {
            background: #1e3a3a;
            color: #fff;
            padding: 0.8rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .price-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #eee8e0;
        }
        .price-table tr:nth-child(even) {
            background: #faf7f3;
        }
        .price-table tr:hover {
            background: #f0e8de;
        }
        .price-table .price {
            font-weight: 700;
            color: #b45a2e;
        }
        .interaction-section {
            background: #f3eee8;
            padding: 3rem 0;
            border-top: 2px solid #d4a373;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .interaction-card {
            background: #fff;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }
        .interaction-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .interaction-card form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1rem;
        }
        .interaction-card input,
        .interaction-card textarea,
        .interaction-card select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #e0d8ce;
            border-radius: 10px;
            font-size: 0.95rem;
            font-family: inherit;
            transition: 0.2s;
            background: #fcfaf8;
        }
        .interaction-card input:focus,
        .interaction-card textarea:focus,
        .interaction-card select:focus {
            border-color: #d4a373;
            outline: none;
            box-shadow: 0 0 0 4px rgba(212, 163, 115, 0.15);
        }
        .interaction-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .interaction-card .btn-submit {
            background: #d4a373;
            color: #fff;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            align-self: flex-start;
            font-size: 1rem;
        }
        .interaction-card .btn-submit:hover {
            background: #b88a5e;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212, 163, 115, 0.3);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.3rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #ddd6cb;
            cursor: pointer;
            transition: 0.15s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f7c948;
        }
        .related-links-inline {
            background: #f6f2ec;
            border-radius: 12px;
            padding: 1.5rem 2rem;
            margin: 2rem 0;
            border-left: 6px solid #d4a373;
        }
        .related-links-inline ul {
            list-style: none;
            padding: 0;
            margin: 0.5rem 0 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.4rem 1.5rem;
        }
        .related-links-inline li a {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .related-links-inline li a::before {
            content: "▸";
            color: #b45a2e;
            font-weight: 700;
        }
        .site-footer {
            background: #1e2a2a;
            color: #cbd6d0;
            padding: 2.5rem 0 1.5rem;
            font-size: 0.9rem;
        }
        .site-footer a {
            color: #d4a373;
        }
        .site-footer a:hover {
            color: #f5e6d3;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-grid h4 {
            color: #f5e6d3;
            margin-top: 0;
            font-size: 1.1rem;
        }
        .friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
            padding: 1rem 0;
            border-top: 1px solid #3a4a4a;
            border-bottom: 1px solid #3a4a4a;
            margin-bottom: 1.5rem;
        }
        .friend-link a {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .friend-link a::before {
            content: "🔗";
            font-size: 0.8rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2a3a3a;
            font-size: 0.85rem;
            color: #8a9a92;
        }
        .copyright strong {
            color: #d4a373;
        }
        @media (max-width: 900px) {
            .interaction-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .related-links-inline ul {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #1e3a3a;
                padding: 0.8rem 0.5rem;
                border-radius: 12px;
                margin-top: 0.5rem;
                gap: 0.2rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 1rem;
                width: 100%;
                border-radius: 8px;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .price-table {
                font-size: 0.85rem;
            }
            .price-table th,
            .price-table td {
                padding: 0.5rem 0.6rem;
            }
            .search-form {
                flex-direction: column;
                border-radius: 20px;
                background: transparent;
                box-shadow: none;
                gap: 0.8rem;
            }
            .search-form input[type="text"] {
                background: #f6f2ec;
                border-radius: 50px;
            }
            .search-form button {
                justify-content: center;
            }
            .hero-image-wrap .img-caption {
                font-size: 0.75rem;
                padding: 1rem 1rem 0.8rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.8rem;
            }
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.3rem;
                padding-left: 0.6rem;
            }
            .content-area p,
            .content-area li {
                font-size: 0.95rem;
            }
            .interaction-card {
                padding: 1.2rem;
            }
            .star-rating label {
                font-size: 1.6rem;
            }
        }
        .text-muted {
            color: #6a7a72;
        }
        .mt-2 {
            margin-top: 1.5rem;
        }
        .mb-1 {
            margin-bottom: 0.8rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .updated-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: #e8f0ea;
            padding: 0.3rem 1rem;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #1e4a3a;
            font-weight: 600;
        }
