* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f7f3e9;
            color: #2d2a24;
            line-height: 1.7;
            font-size: 16px;
            scroll-behavior: smooth;
        }
        a {
            color: #b5522a;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #8a3e1f;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1e3c2c 0%, #2a5a3f 100%);
            padding: 16px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            letter-spacing: 2px;
            color: #f7e9d7;
            text-transform: uppercase;
            font-family: 'Georgia', 'Times New Roman', serif;
            text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
            transition: transform 0.2s;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #ffd9a8;
        }
        .my-logo span {
            color: #e8b87a;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #f7e9d7;
            color: #f7e9d7;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .nav-menu {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            color: #f7e9d7;
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.92rem;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .nav-menu a:hover {
            background: #e8b87a;
            color: #1e3c2c;
            text-decoration: none;
        }
        .nav-menu a i {
            margin-right: 6px;
        }
        .breadcrumb {
            background: #e8dccc;
            padding: 10px 0;
            font-size: 0.88rem;
            border-bottom: 1px solid #d6c8b4;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            align-items: center;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 12px;
            color: #8a7a64;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #6a5a44;
        }
        .breadcrumb a:hover {
            color: #b5522a;
        }
        .breadcrumb .current {
            color: #2d2a24;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(145deg, #2a5a3f 0%, #1e3c2c 100%);
            padding: 60px 20px;
            text-align: center;
            color: #f7e9d7;
            border-radius: 0 0 40px 40px;
            margin-bottom: 40px;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            margin-bottom: 16px;
            letter-spacing: 1px;
            text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 24px;
            opacity: 0.92;
            line-height: 1.8;
        }
        .hero .badge {
            display: inline-block;
            background: #e8b87a;
            color: #1e3c2c;
            padding: 8px 24px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 0.95rem;
            margin-top: 8px;
        }
        section {
            margin-bottom: 48px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 800;
            color: #1e3c2c;
            margin-top: 48px;
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 4px solid #e8b87a;
            display: inline-block;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2a5a3f;
            margin-top: 32px;
            margin-bottom: 14px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #3d6b4f;
            margin-top: 24px;
            margin-bottom: 10px;
        }
        p {
            margin-bottom: 16px;
            color: #3d3830;
        }
        .content-card {
            background: #fffcf7;
            border-radius: 20px;
            padding: 32px 28px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            margin-bottom: 32px;
            border: 1px solid #ece3d6;
        }
        .content-card p:last-child {
            margin-bottom: 0;
        }
        .highlight-box {
            background: #f0ebe0;
            border-left: 6px solid #e8b87a;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 20px 0;
        }
        .highlight-box strong {
            color: #1e3c2c;
        }
        .emoji-big {
            font-size: 1.8rem;
            vertical-align: middle;
            margin-right: 8px;
        }
        .featured-image-wrap {
            margin: 32px 0;
            text-align: center;
            background: #f0ebe0;
            padding: 20px;
            border-radius: 20px;
        }
        .featured-image-wrap img {
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            max-width: 100%;
        }
        .featured-image-wrap figcaption {
            margin-top: 12px;
            font-size: 0.9rem;
            color: #6a5a44;
            font-style: italic;
        }
        .resource-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 12px;
            margin: 20px 0;
        }
        .resource-links a {
            display: block;
            background: #f7f3e9;
            padding: 14px 20px;
            border-radius: 10px;
            border: 1px solid #e0d5c4;
            font-weight: 500;
            transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
        }
        .resource-links a:hover {
            background: #e8dccc;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
            text-decoration: none;
        }
        .resource-links a i {
            margin-right: 10px;
            color: #b5522a;
        }
        .form-card {
            background: #fffcf7;
            border-radius: 20px;
            padding: 28px 24px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            border: 1px solid #ece3d6;
            margin-bottom: 24px;
        }
        .form-card label {
            display: block;
            font-weight: 600;
            margin-top: 16px;
            margin-bottom: 6px;
            color: #2d2a24;
        }
        .form-card input,
        .form-card textarea,
        .form-card select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #d6c8b4;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            background: #faf8f4;
            transition: border-color 0.2s, box-shadow 0.2s;
        }
        .form-card input:focus,
        .form-card textarea:focus,
        .form-card select:focus {
            outline: none;
            border-color: #b5522a;
            box-shadow: 0 0 0 4px rgba(181, 82, 42, 0.15);
        }
        .form-card textarea {
            min-height: 120px;
            resize: vertical;
        }
        .form-card .btn {
            background: #1e3c2c;
            color: #f7e9d7;
            border: none;
            padding: 14px 32px;
            border-radius: 40px;
            font-size: 1.05rem;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
            margin-top: 18px;
            display: inline-block;
        }
        .form-card .btn:hover {
            background: #2a5a3f;
            transform: translateY(-2px);
        }
        .form-card .btn i {
            margin-right: 8px;
        }
        .star-rating {
            display: flex;
            gap: 8px;
            font-size: 2rem;
            color: #d6c8b4;
            cursor: pointer;
            margin: 8px 0;
            flex-wrap: wrap;
        }
        .star-rating i {
            transition: color 0.15s, transform 0.15s;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #e8b87a;
            transform: scale(1.15);
        }
        .site-footer {
            background: #1e3c2c;
            color: #d6c8b4;
            padding: 40px 0 24px;
            margin-top: 48px;
            border-radius: 40px 40px 0 0;
        }
        .site-footer .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }
        .site-footer friend-link {
            display: block;
            font-weight: 600;
            font-size: 1.1rem;
            color: #e8b87a;
            margin-bottom: 12px;
        }
        .site-footer .friend-links-list {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .site-footer .friend-links-list a {
            color: #d6c8b4;
            font-size: 0.95rem;
            transition: color 0.2s;
        }
        .site-footer .friend-links-list a:hover {
            color: #e8b87a;
            text-decoration: none;
        }
        .site-footer .copyright {
            grid-column: 1 / -1;
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid #2a5a3f;
            font-size: 0.9rem;
            color: #a89a84;
            margin-top: 16px;
        }
        .site-footer .copyright strong {
            color: #e8b87a;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                gap: 4px;
                padding-top: 12px;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                margin-top: 8px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 12px 16px;
                text-align: left;
                border-radius: 8px;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .site-footer .container {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .content-card {
                padding: 20px 16px;
            }
            .resource-links {
                grid-template-columns: 1fr;
            }
            .form-card {
                padding: 20px 16px;
            }
            .header-inner {
                gap: 8px;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .hero {
                padding: 32px 16px;
            }
            .breadcrumb ol {
                font-size: 0.8rem;
                gap: 4px 8px;
            }
        }
        @media print {
            .site-header,
            .breadcrumb,
            .form-card,
            .site-footer {
                display: none;
            }
            body {
                background: white;
                color: black;
            }
        }
