        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f4f7fc;
            color: #1e2a3a;
            line-height: 1.7;
            padding: 0 1rem;
        }
        a {
            color: #c0392b;
            text-decoration: none;
            transition: color .2s;
        }
        a:hover,
        a:focus {
            color: #e74c3c;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin: 1rem 0;
        }
        li {
            margin-bottom: .4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.3;
            color: #0b1a2a;
            margin-top: 2rem;
            margin-bottom: .8rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.4rem;
            border-left: 6px solid #c0392b;
            padding-left: 1.2rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 3px double #c0392b;
            padding-bottom: .4rem;
        }
        h3 {
            font-size: 1.35rem;
            color: #2c3e50;
        }
        h4 {
            font-size: 1.1rem;
            color: #34495e;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #fff;
            padding: 1.5rem 2rem;
            border-radius: 24px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, .06);
        }
        header {
            padding: 1.2rem 0 .8rem;
            border-bottom: 2px solid #eaeef3;
            margin-bottom: 1rem;
        }
        .header-top {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: .8rem 1.5rem;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -.5px;
            background: linear-gradient(145deg, #c0392b, #e67e22);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-flex;
            align-items: center;
            gap: .4rem;
        }
        .my-logo i {
            font-size: 1.8rem;
            -webkit-text-fill-color: initial;
            color: #c0392b;
        }
        .my-logo small {
            font-size: .8rem;
            -webkit-text-fill-color: initial;
            color: #5a6c7d;
            font-weight: 400;
            letter-spacing: 0;
        }
        nav {
            display: flex;
            align-items: center;
            gap: .3rem 1.2rem;
            flex-wrap: wrap;
        }
        nav a {
            font-weight: 600;
            padding: .3rem .6rem;
            border-radius: 8px;
            color: #1e2a3a;
            font-size: .95rem;
            transition: background .2s, color .2s;
        }
        nav a:hover {
            background: #c0392b10;
            color: #c0392b;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #1e2a3a;
            cursor: pointer;
            padding: .2rem .6rem;
            border-radius: 8px;
            transition: background .2s;
        }
        .hamburger:hover {
            background: #eaeef3;
        }
        .nav-mobile {
            display: flex;
            gap: .3rem 1.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: .6rem 0 .2rem;
            font-size: .9rem;
            color: #5a6c7d;
            gap: .3rem .6rem;
            margin: .4rem 0 .6rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: .6rem;
            color: #b0b8c4;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #c0392b;
        }
        .breadcrumb .active {
            color: #1e2a3a;
            font-weight: 600;
        }
        .search-block {
            background: #f0f4fa;
            border-radius: 60px;
            padding: .3rem .3rem .3rem 1.2rem;
            display: flex;
            align-items: center;
            max-width: 420px;
            margin: 1.2rem 0 1.8rem;
            border: 1px solid #dce3ed;
            transition: border-color .2s, box-shadow .2s;
        }
        .search-block:focus-within {
            border-color: #c0392b;
            box-shadow: 0 0 0 3px #c0392b20;
        }
        .search-block input {
            flex: 1;
            border: none;
            background: transparent;
            padding: .7rem 0;
            font-size: 1rem;
            outline: none;
            color: #1e2a3a;
        }
        .search-block input::placeholder {
            color: #8a9aa8;
        }
        .search-block button {
            background: #c0392b;
            border: none;
            color: #fff;
            padding: .6rem 1.4rem;
            border-radius: 60px;
            font-weight: 600;
            font-size: .95rem;
            cursor: pointer;
            transition: background .2s, transform .1s;
            display: flex;
            align-items: center;
            gap: .4rem;
        }
        .search-block button:hover {
            background: #a93226;
        }
        .search-block button:active {
            transform: scale(.96);
        }
        .hero-wrap {
            margin: 1.8rem 0 2.2rem;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
            background: linear-gradient(135deg, #1e2a3a 0%, #2c3e50 100%);
            padding: .4rem;
        }
        .hero-wrap img {
            border-radius: 16px;
            width: 100%;
            object-fit: cover;
            max-height: 440px;
        }
        section {
            margin: 2.2rem 0;
        }
        .highlight-box {
            background: #fef9f0;
            border-left: 6px solid #e67e22;
            padding: 1.2rem 1.6rem;
            border-radius: 12px;
            margin: 1.6rem 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 1.2rem;
            margin: 1.6rem 0;
        }
        .stat-card {
            background: #fff;
            border-radius: 16px;
            padding: 1.2rem .8rem;
            text-align: center;
            box-shadow: 0 4px 16px rgba(0, 0, 0, .05);
            border: 1px solid #eaeef3;
            transition: transform .2s, box-shadow .2s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
        }
        .stat-card .num {
            font-size: 2rem;
            font-weight: 800;
            color: #c0392b;
            display: block;
        }
        .stat-card .label {
            font-size: .9rem;
            color: #5a6c7d;
            font-weight: 500;
        }
        .interview-card {
            background: #f4f7fc;
            border-radius: 20px;
            padding: 1.6rem 2rem;
            margin: 1.8rem 0;
            border: 1px solid #dce3ed;
            position: relative;
        }
        .interview-card::before {
            content: "🗣️";
            font-size: 2.2rem;
            position: absolute;
            top: -.8rem;
            left: 1.2rem;
        }
        .interview-card h4 {
            margin-top: 0;
            padding-left: 2.8rem;
        }
        .interview-card .quote {
            font-style: italic;
            color: #2c3e50;
            font-size: 1.05rem;
            padding: .6rem 0 .2rem 2.8rem;
            border-left: 3px solid #c0392b;
            padding-left: 1.8rem;
            margin-top: .6rem;
        }
        .interact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2rem 0;
        }
        @media (max-width:700px) {
            .interact-grid {
                grid-template-columns: 1fr;
                gap: 1.6rem;
            }
        }
        .interact-card {
            background: #fafcff;
            border-radius: 20px;
            padding: 1.6rem 1.8rem;
            border: 1px solid #eaeef3;
            box-shadow: 0 4px 12px rgba(0, 0, 0, .02);
        }
        .interact-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: .6rem;
        }
        .interact-card form {
            display: flex;
            flex-direction: column;
            gap: .8rem;
            margin-top: .6rem;
        }
        .interact-card input,
        .interact-card textarea,
        .interact-card select {
            padding: .7rem 1rem;
            border: 1px solid #dce3ed;
            border-radius: 12px;
            font-size: .95rem;
            font-family: inherit;
            background: #fff;
            transition: border-color .2s;
        }
        .interact-card input:focus,
        .interact-card textarea:focus,
        .interact-card select:focus {
            border-color: #c0392b;
            outline: none;
            box-shadow: 0 0 0 3px #c0392b15;
        }
        .interact-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .interact-card .btn-submit {
            background: #c0392b;
            color: #fff;
            border: none;
            padding: .7rem 1.6rem;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background .2s, transform .1s;
            align-self: flex-start;
        }
        .interact-card .btn-submit:hover {
            background: #a93226;
        }
        .interact-card .btn-submit:active {
            transform: scale(.97);
        }
        .star-select {
            display: flex;
            gap: .3rem;
            font-size: 1.6rem;
            direction: rtl;
            unicode-bidi: bidi-override;
        }
        .star-select input {
            display: none;
        }
        .star-select label {
            cursor: pointer;
            color: #dce3ed;
            transition: color .2s;
        }
        .star-select label:hover,
        .star-select label:hover~label,
        .star-select input:checked~label {
            color: #f1c40f;
        }
        friend-link {
            display: block;
            padding: 1.4rem 0 .6rem;
            border-top: 2px solid #eaeef3;
            margin-top: 2.6rem;
        }
        friend-link .fl-head {
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: .8rem;
            color: #1e2a3a;
        }
        friend-link .fl-list {
            display: flex;
            flex-wrap: wrap;
            gap: .6rem 1.8rem;
            list-style: none;
            padding: 0;
        }
        friend-link .fl-list li a {
            color: #2c3e50;
            font-weight: 500;
            padding: .2rem 0;
            border-bottom: 2px solid transparent;
            transition: border-color .2s, color .2s;
        }
        friend-link .fl-list li a:hover {
            border-bottom-color: #c0392b;
            color: #c0392b;
            text-decoration: none;
        }
        footer {
            padding: 1.8rem 0 1rem;
            border-top: 2px solid #eaeef3;
            margin-top: 1.8rem;
            text-align: center;
            color: #5a6c7d;
            font-size: .92rem;
        }
        footer .copyright {
            font-weight: 500;
            margin-bottom: .2rem;
        }
        footer .copyright a {
            color: #1e2a3a;
        }
        @media (max-width:768px) {
            body {
                padding: 0 .6rem;
            }
            .container {
                padding: 1rem 1.2rem;
                border-radius: 16px;
            }
            h1 {
                font-size: 1.8rem;
                padding-left: .8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .header-top {
                flex-direction: column;
                align-items: stretch;
                gap: .4rem;
            }
            .my-logo {
                font-size: 1.6rem;
                justify-content: center;
            }
            .hamburger {
                display: inline-block;
                align-self: flex-end;
                margin-top: -2.4rem;
            }
            .nav-mobile {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: .2rem;
                padding: .6rem 0 .2rem;
            }
            .nav-mobile.show {
                display: flex;
            }
            .nav-mobile a {
                padding: .5rem .8rem;
                border-radius: 8px;
                background: #f4f7fc;
            }
            .search-block {
                max-width: 100%;
                margin: .8rem 0 1.2rem;
            }
            .search-block input {
                font-size: .9rem;
                padding: .5rem 0;
            }
            .search-block button {
                padding: .5rem 1rem;
                font-size: .85rem;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: .8rem;
            }
            .interview-card {
                padding: 1.2rem 1.2rem;
            }
            .interview-card .quote {
                padding-left: .8rem;
                font-size: .95rem;
            }
            .interact-grid {
                gap: 1rem;
            }
            .interact-card {
                padding: 1.2rem;
            }
            .star-select {
                font-size: 1.4rem;
            }
        }
        @media (max-width:480px) {
            .container {
                padding: .6rem .8rem;
            }
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.2rem;
            }
            .stat-card .num {
                font-size: 1.5rem;
            }
            .stat-card {
                padding: .8rem .4rem;
            }
            .breadcrumb {
                font-size: .8rem;
                gap: .2rem .4rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .my-logo i {
                font-size: 1.2rem;
            }
        }
        .text-small {
            font-size: .9rem;
            color: #5a6c7d;
        }
        .last-update {
            display: inline-block;
            background: #e8edf4;
            padding: .2rem 1rem;
            border-radius: 60px;
            font-size: .85rem;
            color: #2c3e50;
            font-weight: 500;
            margin: .4rem 0 1.2rem;
        }
        .btn-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #c0392b;
            color: #fff;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            box-shadow: 0 6px 20px rgba(192, 57, 43, .3);
            transition: transform .2s, opacity .2s;
            opacity: .85;
            z-index: 99;
            border: none;
            cursor: pointer;
        }
        .btn-top:hover {
            transform: scale(1.08);
            opacity: 1;
            color: #fff;
        }
        @media (max-width:600px) {
            .btn-top {
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
                bottom: 1.2rem;
                right: 1.2rem;
            }
        }
