* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #f5f3ef;
            color: #1e1e1e;
            line-height: 1.7;
            padding: 0 20px;
            scroll-behavior: smooth;
        }
        .wrapper {
            max-width: 1200px;
            margin: 0 auto;
            background: #fffdf9;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.06);
            border-radius: 32px;
            padding: 24px 32px 20px;
            margin-top: 24px;
            margin-bottom: 24px;
        }
        header {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 16px;
            border-bottom: 2px solid #eee7de;
            position: relative;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            text-decoration: none;
            color: #c0392b;
            background: linear-gradient(145deg, #c0392b, #e67e22);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            -webkit-text-fill-color: #c0392b;
            font-size: 2rem;
        }
        .my-logo span {
            font-size: 0.9rem;
            font-weight: 400;
            color: #7f8c8d;
            -webkit-text-fill-color: #7f8c8d;
            letter-spacing: 0.3px;
        }
        .hamburger {
            display: none;
            font-size: 2rem;
            background: none;
            border: none;
            cursor: pointer;
            color: #2c3e50;
            padding: 4px 12px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #f0ebe4;
        }
        nav#main-nav ul {
            display: flex;
            gap: 8px 20px;
            list-style: none;
            flex-wrap: wrap;
            align-items: center;
        }
        nav#main-nav ul li a {
            text-decoration: none;
            color: #2c3e50;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 6px 10px;
            border-radius: 100px;
            transition: all 0.2s;
        }
        nav#main-nav ul li a:hover {
            background: #c0392b;
            color: #fff;
        }
        .breadcrumb {
            width: 100%;
            margin-top: 12px;
            font-size: 0.85rem;
            color: #7f8c8d;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            padding: 8px 0 4px;
            border-top: 1px solid #f0ebe4;
        }
        .breadcrumb a {
            color: #c0392b;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #95a5a6;
        }
        .hero-img {
            width: 100%;
            border-radius: 24px;
            margin: 28px 0 20px;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
            display: block;
            max-height: 480px;
            object-fit: cover;
            background: #e8e0d6;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 24px 0 12px;
            color: #1a1a2e;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 48px 0 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid #c0392b;
            color: #1a1a2e;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 32px 0 12px;
            color: #2c3e50;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 24px 0 10px;
            color: #34495e;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: #2d2d2d;
        }
        .meta {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 28px;
            font-size: 0.9rem;
            color: #7f8c8d;
            margin: 8px 0 18px;
            padding: 8px 0;
            border-bottom: 1px dashed #e0d8ce;
        }
        .meta i {
            margin-right: 6px;
        }
        .highlight {
            background: #fff3e0;
            padding: 4px 10px;
            border-radius: 6px;
            font-weight: 600;
        }
        .stat-box {
            background: #faf6f0;
            border-left: 5px solid #c0392b;
            padding: 20px 28px;
            border-radius: 12px;
            margin: 24px 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
        }
        .stat-box p {
            margin-bottom: 6px;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 28px 0;
        }
        .card {
            background: #fcf9f5;
            padding: 24px;
            border-radius: 20px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            transition: transform 0.2s;
        }
        .card:hover {
            transform: translateY(-4px);
        }
        .card i {
            font-size: 2rem;
            color: #c0392b;
            margin-bottom: 12px;
        }
        .quote {
            font-style: italic;
            background: #f0ebe4;
            padding: 24px 32px;
            border-radius: 20px;
            margin: 28px 0;
            position: relative;
            font-size: 1.15rem;
            color: #2c3e50;
        }
        .quote::before {
            content: '\201C';
            font-size: 4rem;
            color: #c0392b;
            position: absolute;
            top: -8px;
            left: 16px;
            font-family: Georgia, serif;
            opacity: 0.3;
        }
        .faq-item {
            border-bottom: 1px solid #e8e0d6;
            padding: 16px 0;
        }
        .faq-item h4 {
            margin: 0 0 6px;
            color: #c0392b;
        }
        .search-block {
            background: #faf6f0;
            padding: 28px 32px;
            border-radius: 24px;
            margin: 40px 0 24px;
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
        }
        .search-block label {
            font-weight: 700;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-block form {
            display: flex;
            flex: 1;
            gap: 8px;
            flex-wrap: wrap;
        }
        .search-block input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 14px 20px;
            border: 2px solid #ddd6cc;
            border-radius: 100px;
            font-size: 1rem;
            background: #fff;
            outline: none;
            transition: border 0.2s;
        }
        .search-block input[type="text"]:focus {
            border-color: #c0392b;
        }
        .search-block button {
            padding: 14px 32px;
            border: none;
            border-radius: 100px;
            background: #c0392b;
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .search-block button:hover {
            background: #a93226;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 40px 0 20px;
        }
        .feedback-card {
            background: #fcf9f5;
            padding: 24px 28px;
            border-radius: 24px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
        }
        .feedback-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .feedback-card input,
        .feedback-card textarea {
            padding: 12px 18px;
            border: 2px solid #ddd6cc;
            border-radius: 12px;
            font-size: 1rem;
            background: #fff;
            outline: none;
            transition: border 0.2s;
            font-family: inherit;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus {
            border-color: #c0392b;
        }
        .feedback-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-card button {
            padding: 12px 24px;
            border: none;
            border-radius: 100px;
            background: #c0392b;
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
            align-self: flex-start;
        }
        .feedback-card button:hover {
            background: #a93226;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #e0d8ce;
            cursor: pointer;
            direction: rtl;
            unicode-bidi: bidi-override;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            transition: color 0.15s;
            color: #e0d8ce;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f1c40f;
        }
        friend-link {
            display: block;
            padding: 24px 0 16px;
            margin-top: 36px;
            border-top: 2px solid #eee7de;
        }
        friend-link h3 {
            font-size: 1.2rem;
            margin-bottom: 16px;
            color: #1a1a2e;
        }
        friend-link ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 10px 24px;
        }
        friend-link ul li a {
            color: #c0392b;
            text-decoration: none;
            font-weight: 500;
            padding: 4px 0;
            border-bottom: 2px solid transparent;
            transition: border 0.2s;
        }
        friend-link ul li a:hover {
            border-bottom-color: #c0392b;
        }
        footer {
            margin-top: 32px;
            padding-top: 20px;
            border-top: 2px solid #eee7de;
            text-align: center;
            font-size: 0.9rem;
            color: #7f8c8d;
        }
        footer p {
            margin-bottom: 6px;
            font-size: 0.9rem;
        }
        @media (max-width: 900px) {
            .wrapper {
                padding: 16px 16px 20px;
                border-radius: 20px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .grid-2 {
                grid-template-columns: 1fr;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .hamburger {
                display: block;
            }
            nav#main-nav {
                width: 100%;
                display: none;
                margin-top: 12px;
            }
            nav#main-nav.open {
                display: block;
            }
            nav#main-nav ul {
                flex-direction: column;
                gap: 6px;
                width: 100%;
            }
            nav#main-nav ul li a {
                display: block;
                padding: 10px 16px;
                border-radius: 12px;
                background: #faf6f0;
            }
            .search-block {
                flex-direction: column;
                align-items: stretch;
                padding: 20px;
            }
            .search-block form {
                flex-direction: column;
            }
            .search-block input[type="text"] {
                min-width: unset;
            }
            .hero-img {
                max-height: 240px;
                border-radius: 16px;
            }
            .my-logo {
                font-size: 1.6rem;
            }
            .stat-box {
                padding: 16px 18px;
            }
            .quote {
                padding: 18px 20px;
                font-size: 1rem;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 8px;
            }
            .wrapper {
                padding: 12px 10px 16px;
                border-radius: 16px;
                margin-top: 12px;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .meta {
                flex-direction: column;
                gap: 4px;
            }
        }
        :target {
            scroll-margin-top: 100px;
        }
        a {
            color: #c0392b;
        }
        a:hover {
            text-decoration: none;
        }
        img {
            max-width: 100%;
            height: auto;
        }
        .tag {
            display: inline-block;
            background: #e8e0d6;
            padding: 2px 14px;
            border-radius: 100px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #2c3e50;
            margin-right: 6px;
        }
