        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #f5f7fc;
            color: #1a1a2e;
            line-height: 1.7;
            font-size: 16px;
            padding: 0 20px;
        }
        a {
            color: #2a5c8a;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #e94560;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
            border-radius: 24px;
            padding: 20px 30px 40px;
            margin-top: 20px;
            margin-bottom: 40px;
        }
        header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0 12px;
            border-bottom: 2px solid #eef2f7;
            position: relative;
        }
        .my-logo {
            font-size: 26px;
            font-weight: 800;
            background: linear-gradient(135deg, #2a5c8a, #e94560, #f5a623);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            display: inline-block;
            text-decoration: none;
        }
        .my-logo:hover {
            -webkit-text-fill-color: #e94560;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 14px;
            font-weight: 400;
            -webkit-text-fill-color: #555;
            color: #555;
            letter-spacing: 0;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        nav a {
            padding: 6px 14px;
            border-radius: 40px;
            font-weight: 500;
            font-size: 14px;
            color: #1a1a2e;
            transition: background 0.25s, color 0.25s;
        }
        nav a:hover {
            background: #2a5c8a;
            color: #fff;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 28px;
            color: #1a1a2e;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #eef2f7;
        }
        .nav-links {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            align-items: center;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            font-size: 13px;
            padding: 14px 0 8px;
            color: #666;
            list-style: none;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .breadcrumb li+li::before {
            content: "›";
            color: #aaa;
            font-size: 18px;
            margin-right: 6px;
        }
        .breadcrumb a {
            color: #2a5c8a;
        }
        .breadcrumb a:hover {
            color: #e94560;
        }
        .breadcrumb .current {
            color: #888;
            font-weight: 500;
        }
        h1 {
            font-size: 2.4rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 28px 0 16px;
            color: #0f1a2e;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin: 42px 0 16px;
            padding-bottom: 6px;
            border-bottom: 3px solid #eef2f7;
            color: #16213e;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin: 32px 0 12px;
            color: #1a2a4a;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 24px 0 10px;
            color: #2a3a5a;
        }
        p {
            margin: 0 0 18px;
            font-size: 1.02rem;
            color: #2d2d44;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 400;
            color: #3a3a5a;
            margin-bottom: 24px;
            border-left: 4px solid #e94560;
            padding-left: 20px;
        }
        .last-updated {
            font-size: 13px;
            color: #999;
            margin-top: -8px;
            margin-bottom: 24px;
            display: block;
        }
        .last-updated i {
            margin-right: 4px;
        }
        .highlight {
            background: #fef6e7;
            padding: 2px 8px;
            border-radius: 6px;
            font-weight: 600;
        }
        .emoji-big {
            font-size: 1.4em;
            margin-right: 4px;
        }
        .hero-img {
            border-radius: 20px;
            margin: 20px 0 30px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
            width: 100%;
            object-fit: cover;
        }
        .inline-links {
            display: inline;
            font-weight: 500;
            color: #2a5c8a;
        }
        .search-section {
            background: #f0f4fe;
            border-radius: 20px;
            padding: 24px 28px;
            margin: 40px 0 20px;
        }
        .search-section h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 10px;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 12px 20px;
            border: 2px solid #dce3ef;
            border-radius: 40px;
            font-size: 16px;
            outline: none;
            transition: border 0.3s;
            background: #fff;
        }
        .search-form input[type="text"]:focus {
            border-color: #2a5c8a;
        }
        .search-form button {
            background: #2a5c8a;
            color: #fff;
            border: none;
            padding: 12px 32px;
            border-radius: 40px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #1a3a6a;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 40px 0 20px;
        }
        .comment-box,
        .rating-box {
            background: #f7f9fe;
            border-radius: 20px;
            padding: 24px 26px;
            border: 1px solid #e8ecf5;
        }
        .comment-box h3,
        .rating-box h3 {
            margin-top: 0;
        }
        .comment-box textarea {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid #dce3ef;
            border-radius: 16px;
            font-size: 15px;
            resize: vertical;
            min-height: 100px;
            font-family: inherit;
            transition: border 0.3s;
            background: #fff;
        }
        .comment-box textarea:focus {
            border-color: #2a5c8a;
            outline: none;
        }
        .comment-box input[type="text"] {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #dce3ef;
            border-radius: 40px;
            font-size: 15px;
            margin: 8px 0 12px;
            transition: border 0.3s;
            background: #fff;
        }
        .comment-box input[type="text"]:focus {
            border-color: #2a5c8a;
            outline: none;
        }
        .comment-box button,
        .rating-box button {
            background: #2a5c8a;
            color: #fff;
            border: none;
            padding: 10px 28px;
            border-radius: 40px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 6px;
        }
        .comment-box button:hover,
        .rating-box button:hover {
            background: #1a3a6a;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 28px;
            color: #ccc;
            cursor: pointer;
            margin: 10px 0 14px;
            direction: rtl;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            transition: color 0.2s;
            color: #ddd;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5a623;
        }
        .star-rating label i {
            font-size: 32px;
        }
        .rating-value {
            font-weight: 600;
            color: #1a2a4a;
            margin-left: 6px;
        }
        friend-link {
            display: block;
            padding: 18px 0 10px;
            border-top: 2px solid #eef2f7;
            margin-top: 30px;
            font-size: 14px;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 16px 4px 0;
            padding: 4px 0;
            color: #2a5c8a;
            font-weight: 500;
        }
        friend-link a:hover {
            color: #e94560;
        }
        .footer-copyright {
            text-align: center;
            padding: 18px 0 6px;
            font-size: 13px;
            color: #888;
            border-top: 1px solid #eef2f7;
            margin-top: 14px;
        }
        .footer-copyright strong {
            color: #444;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 12px;
            }
            .container {
                padding: 16px 16px 30px;
                margin-top: 12px;
                border-radius: 16px;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .my-logo {
                font-size: 20px;
            }
            .my-logo small {
                font-size: 11px;
            }
            .hamburger {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #f7f9fe;
                padding: 12px 0;
                border-radius: 16px;
                margin-top: 12px;
                gap: 2px;
            }
            .nav-links.open {
                display: flex;
            }
            .nav-links a {
                padding: 10px 20px;
                width: 100%;
                text-align: left;
                border-radius: 0;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .star-rating {
                justify-content: center;
            }
            .breadcrumb {
                font-size: 12px;
                gap: 4px 10px;
            }
            .lead {
                font-size: 1.05rem;
                padding-left: 14px;
            }
            friend-link a {
                display: block;
                margin: 6px 0;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.4rem;
            }
            .container {
                padding: 12px 12px 24px;
            }
            .star-rating label i {
                font-size: 26px;
            }
        }
        .text-small {
            font-size: 14px;
            color: #777;
        }
        .mt-2 {
            margin-top: 16px;
        }
        .mb-2 {
            margin-bottom: 16px;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .divider {
            height: 2px;
            background: linear-gradient(to right, #eef2f7, transparent);
            margin: 30px 0;
        }
        .btn-secondary {
            background: transparent;
            border: 2px solid #2a5c8a;
            color: #2a5c8a;
            padding: 8px 20px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: 0.25s;
        }
        .btn-secondary:hover {
            background: #2a5c8a;
            color: #fff;
        }
