* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f9f6f0;
            color: #2c2c2c;
            line-height: 1.7;
            padding: 0 16px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .container {
            max-width: 1200px;
            width: 100%;
            background: #fff;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.06);
            border-radius: 20px;
            margin: 24px 0;
            padding: 24px 32px;
        }
        header {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 16px;
            border-bottom: 2px solid #e8e0d0;
            position: relative;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #1e3d2b;
            text-decoration: none;
            font-family: 'Georgia', 'Times New Roman', serif;
            background: linear-gradient(145deg, #1e3d2b, #3a6b4f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.2s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo small {
            font-size: 0.9rem;
            font-weight: 400;
            -webkit-text-fill-color: #7a6a5a;
            color: #7a6a5a;
            letter-spacing: 0.2px;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            background: none;
            border: none;
            color: #1e3d2b;
            padding: 4px 12px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #e8e0d0;
        }
        .nav-menu {
            display: flex;
            gap: 8px 20px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            text-decoration: none;
            color: #2c2c2c;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 6px 14px;
            border-radius: 30px;
            transition: all 0.2s ease;
            background: transparent;
        }
        .nav-menu a:hover,
        .nav-menu a.active {
            background: #1e3d2b;
            color: #fff;
        }
        .nav-menu a i {
            margin-right: 6px;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 14px;
            padding: 14px 0 10px;
            font-size: 0.9rem;
            color: #7a6a5a;
            border-bottom: 1px solid #f0ebe3;
            margin-bottom: 20px;
        }
        .breadcrumb a {
            text-decoration: none;
            color: #5a7c6a;
            font-weight: 500;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
            color: #1e3d2b;
        }
        .breadcrumb span {
            color: #9a8a7a;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #1e3d2b;
            line-height: 1.2;
            margin: 24px 0 12px;
            letter-spacing: -0.3px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #2a4a3a;
            margin: 44px 0 16px;
            padding-bottom: 6px;
            border-bottom: 3px solid #d4c8b4;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #3a5a4a;
            margin: 32px 0 12px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #4a6a5a;
            margin: 24px 0 8px;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: #363636;
        }
        .lead {
            font-size: 1.25rem;
            font-weight: 400;
            color: #4a4a4a;
            background: #f4f0e8;
            padding: 20px 24px;
            border-radius: 16px;
            border-left: 6px solid #1e3d2b;
            margin-bottom: 28px;
        }
        strong {
            color: #1e3d2b;
            font-weight: 700;
        }
        em {
            color: #6a7a5a;
        }
        .highlight {
            background: #f4efe6;
            padding: 2px 10px;
            border-radius: 20px;
            font-weight: 600;
        }
        ul,
        ol {
            margin: 12px 0 20px 24px;
        }
        li {
            margin-bottom: 8px;
            font-size: 1.02rem;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
            margin: 28px 0;
        }
        .feature-card {
            background: #faf8f4;
            border-radius: 16px;
            padding: 24px 20px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
            transition: transform 0.25s ease, box-shadow 0.3s ease;
            border: 1px solid #e8e0d0;
        }
        .feature-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
            border-color: #b8c8b0;
        }
        .feature-card i {
            font-size: 2rem;
            color: #1e3d2b;
            margin-bottom: 12px;
        }
        .feature-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .insight-box {
            background: #edf3ea;
            padding: 24px 28px;
            border-radius: 20px;
            margin: 32px 0;
            border-left: 8px solid #2a6a4a;
        }
        .insight-box p:last-child {
            margin-bottom: 0;
        }
        .quote-block {
            font-style: italic;
            font-size: 1.2rem;
            color: #4a5a4a;
            background: #f4f0e8;
            padding: 20px 28px;
            border-radius: 16px;
            margin: 24px 0;
            border-left: 6px solid #8a9a7a;
        }
        .quote-block cite {
            display: block;
            margin-top: 8px;
            font-size: 0.95rem;
            color: #7a8a6a;
            font-style: normal;
            font-weight: 600;
        }
        .featured-img {
            width: 100%;
            border-radius: 20px;
            margin: 28px 0;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
            border: 1px solid #e0d8c8;
            transition: transform 0.3s ease;
        }
        .featured-img:hover {
            transform: scale(1.005);
        }
        .img-caption {
            font-size: 0.9rem;
            color: #7a7a6a;
            text-align: center;
            margin-top: -16px;
            margin-bottom: 28px;
        }
        .form-section {
            background: #faf8f4;
            border-radius: 20px;
            padding: 28px 32px;
            margin: 40px 0;
            border: 1px solid #e8e0d0;
        }
        .form-section h2 i {
            color: #1e3d2b;
            margin-right: 10px;
        }
        .form-group {
            margin-bottom: 18px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 4px;
            color: #2c3c2c;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #d4c8b4;
            border-radius: 12px;
            font-size: 1rem;
            background: #fff;
            transition: border 0.2s ease;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #1e3d2b;
            outline: none;
            box-shadow: 0 0 0 4px rgba(30, 61, 43, 0.1);
        }
        .form-group textarea {
            height: 120px;
            resize: vertical;
        }
        .btn {
            background: #1e3d2b;
            color: #fff;
            border: none;
            padding: 14px 36px;
            border-radius: 40px;
            font-size: 1.05rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .btn:hover {
            background: #2a5a3a;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(30, 61, 43, 0.25);
        }
        .btn-outline {
            background: transparent;
            color: #1e3d2b;
            border: 2px solid #1e3d2b;
        }
        .btn-outline:hover {
            background: #1e3d2b;
            color: #fff;
        }
        .rating-stars {
            display: flex;
            gap: 8px;
            font-size: 2rem;
            color: #d4c8b4;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-stars i {
            transition: color 0.2s, transform 0.15s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #e8b84a;
            transform: scale(1.1);
        }
        .rating-stars i.selected {
            color: #e8b84a;
        }
        .search-wrap {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin: 20px 0;
        }
        .search-wrap input {
            flex: 1;
            min-width: 200px;
            padding: 12px 18px;
            border: 2px solid #d4c8b4;
            border-radius: 40px;
            font-size: 1rem;
            background: #fff;
        }
        .search-wrap input:focus {
            border-color: #1e3d2b;
            outline: none;
        }
        .search-wrap button {
            padding: 12px 28px;
            border-radius: 40px;
            background: #1e3d2b;
            color: #fff;
            border: none;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.2s;
        }
        .search-wrap button:hover {
            background: #2a5a3a;
        }
        footer {
            margin-top: 48px;
            padding-top: 32px;
            border-top: 2px solid #e8e0d0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 32px;
            margin-bottom: 24px;
        }
        footer h4 {
            color: #1e3d2b;
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        footer a {
            color: #4a6a5a;
            text-decoration: none;
            display: block;
            margin-bottom: 6px;
            transition: color 0.2s;
        }
        footer a:hover {
            color: #1e3d2b;
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding: 20px 0 8px;
            color: #7a7a6a;
            font-size: 0.9rem;
            border-top: 1px solid #f0ebe3;
        }
        .copyright strong {
            color: #3a5a4a;
        }
        friend-link {
            display: block;
            background: #f4f0e8;
            padding: 20px 24px;
            border-radius: 16px;
            margin: 20px 0 12px;
            font-size: 0.98rem;
        }
        friend-link a {
            color: #1e3d2b;
            text-decoration: none;
            font-weight: 600;
            margin: 0 8px;
        }
        friend-link a:hover {
            text-decoration: underline;
        }
        @media (max-width: 768px) {
            .container {
                padding: 16px 14px;
                margin: 12px 0;
                border-radius: 12px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .my-logo {
                font-size: 1.6rem;
            }
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                gap: 6px;
                padding: 16px 0 8px;
                border-top: 1px solid #e8e0d0;
                margin-top: 12px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 10px 16px;
                border-radius: 12px;
                background: #f4f0e8;
            }
            .nav-menu a:hover {
                background: #1e3d2b;
                color: #fff;
            }
            .breadcrumb {
                font-size: 0.8rem;
                gap: 4px 10px;
            }
            .form-section {
                padding: 16px 18px;
            }
            .feature-grid {
                grid-template-columns: 1fr;
            }
            .lead {
                font-size: 1.05rem;
                padding: 14px 16px;
            }
            .rating-stars {
                font-size: 1.6rem;
            }
            .search-wrap input {
                min-width: 140px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 10px 10px;
            }
            h1 {
                font-size: 1.7rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .btn {
                padding: 10px 22px;
                font-size: 0.95rem;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        .text-center {
            text-align: center;
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .flex-center {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .tag {
            display: inline-block;
            background: #e8e0d0;
            padding: 4px 16px;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #3a5a4a;
        }
