        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f4f7fc;
            color: #1a1a2e;
            line-height: 1.7;
            padding: 0 16px;
        }
        a {
            color: #004e8c;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #ff6b35;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            border-radius: 28px 28px 0 0;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
            padding: 0 24px 40px;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #0a1628;
            margin: 1.2rem 0 0.6rem;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #0f2b4a;
            margin: 2.4rem 0 0.8rem;
            padding-bottom: 0.4rem;
            border-bottom: 3px solid #ff6b35;
            display: inline-block;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #1a3a5a;
            margin: 1.8rem 0 0.6rem;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #2a4a6a;
            margin: 1.2rem 0 0.4rem;
        }
        p {
            margin-bottom: 1.1rem;
            color: #2d3f4f;
        }
        .lead {
            font-size: 1.2rem;
            color: #1a2a3a;
            font-weight: 400;
            border-left: 4px solid #ff6b35;
            padding-left: 18px;
            background: #fafcff;
            border-radius: 0 8px 8px 0;
            padding: 12px 18px;
        }
        .highlight {
            background: linear-gradient(120deg, #fff3e8 0%, #fff3e8 40%, transparent 80%);
            padding: 0 6px;
            font-weight: 600;
            color: #b34100;
        }
        .badge {
            display: inline-block;
            background: #ff6b35;
            color: #fff;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 2px 12px;
            border-radius: 20px;
            letter-spacing: 0.02em;
            text-transform: uppercase;
        }
        header {
            padding: 20px 0 12px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            color: #0a1628;
            letter-spacing: -0.03em;
            background: linear-gradient(135deg, #0a1628 30%, #ff6b35 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .my-logo i {
            -webkit-text-fill-color: #ff6b35;
            font-size: 1.8rem;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .nav-links {
            display: flex;
            gap: 8px;
            list-style: none;
            flex-wrap: wrap;
        }
        .nav-links li a {
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.9rem;
            color: #1a2a3a;
            background: transparent;
            transition: all 0.2s ease;
        }
        .nav-links li a:hover {
            background: #ff6b35;
            color: #fff;
            text-decoration: none;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #0a1628;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #eef2f7;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px 10px;
            font-size: 0.85rem;
            color: #5a6a7a;
            padding: 12px 0 8px;
            border-bottom: 1px solid #e8edf4;
            margin-bottom: 8px;
        }
        .breadcrumb a {
            color: #004e8c;
        }
        .breadcrumb i {
            font-size: 0.7rem;
            color: #9aabbc;
        }
        .breadcrumb .current {
            color: #2d3f4f;
            font-weight: 500;
        }
        .search-section {
            background: #f0f4fb;
            border-radius: 20px;
            padding: 20px 24px;
            margin: 20px 0 28px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
            border: 1px solid #dfe7f0;
        }
        .search-section label {
            font-weight: 600;
            color: #0f2b4a;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1.05rem;
        }
        .search-form {
            display: flex;
            flex: 1 1 300px;
            gap: 8px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 18px;
            border: 2px solid #d0dae8;
            border-radius: 40px;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.3s;
            background: #fff;
        }
        .search-form input:focus {
            border-color: #ff6b35;
        }
        .search-form button {
            background: #ff6b35;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 12px 24px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #e55a2b;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin: 28px 0 20px;
        }
        .feedback-card {
            background: #f8faff;
            border-radius: 20px;
            padding: 20px 24px;
            border: 1px solid #e0e8f2;
            transition: box-shadow 0.3s;
        }
        .feedback-card:hover {
            box-shadow: 0 6px 20px rgba(0, 30, 60, 0.08);
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #0f2b4a;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 8px;
        }
        .feedback-card input,
        .feedback-card textarea {
            padding: 10px 16px;
            border: 2px solid #dce4f0;
            border-radius: 12px;
            font-size: 0.9rem;
            font-family: inherit;
            outline: none;
            transition: border 0.3s;
            background: #fff;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus {
            border-color: #ff6b35;
        }
        .feedback-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .feedback-card .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.4rem;
            color: #ffb347;
            direction: rtl;
        }
        .feedback-card .star-rating input {
            display: none;
        }
        .feedback-card .star-rating label {
            cursor: pointer;
            transition: color 0.2s, transform 0.15s;
        }
        .feedback-card .star-rating label:hover,
        .feedback-card .star-rating label:hover~label,
        .feedback-card .star-rating input:checked~label {
            color: #ff6b35;
            transform: scale(1.1);
        }
        .feedback-card .btn-submit {
            background: #004e8c;
            color: #fff;
            border: none;
            padding: 10px 20px;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            align-self: flex-start;
        }
        .feedback-card .btn-submit:hover {
            background: #003a6a;
            transform: translateY(-1px);
        }
        friend-link {
            display: block;
            background: #f2f6fe;
            border-radius: 20px;
            padding: 20px 24px;
            margin: 28px 0 12px;
            border: 1px solid #dce4f0;
        }
        friend-link::before {
            content: "🔗 Friends & Partners";
            display: block;
            font-weight: 700;
            font-size: 1.1rem;
            color: #0f2b4a;
            margin-bottom: 12px;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 14px;
            background: #fff;
            border-radius: 30px;
            border: 1px solid #d0dae8;
            font-size: 0.9rem;
            transition: all 0.2s;
        }
        friend-link a:hover {
            background: #ff6b35;
            color: #fff;
            border-color: #ff6b35;
            text-decoration: none;
        }
        footer {
            text-align: center;
            padding: 28px 16px 20px;
            border-top: 1px solid #e0e8f2;
            color: #4a5a6a;
            font-size: 0.9rem;
            margin-top: 32px;
        }
        footer .copyright {
            font-weight: 500;
            color: #1a2a3a;
        }
        .featured-image {
            margin: 24px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }
        .featured-image img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-image figcaption {
            background: #f4f7fc;
            padding: 10px 18px;
            font-size: 0.85rem;
            color: #4a5a6a;
            text-align: center;
        }
        .linked-pages {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 14px;
            background: #fafcff;
            padding: 14px 18px;
            border-radius: 16px;
            border: 1px solid #e8edf4;
            margin: 18px 0;
        }
        .linked-pages a {
            font-weight: 500;
            padding: 2px 0;
        }
        .linked-pages a::before {
            content: "› ";
            color: #ff6b35;
            font-weight: 700;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 20px 0;
            border-radius: 16px;
            border: 1px solid #e0e8f2;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.92rem;
            min-width: 580px;
        }
        th {
            background: #0f2b4a;
            color: #fff;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
        }
        td {
            padding: 10px 16px;
            border-bottom: 1px solid #e8edf4;
        }
        tr:nth-child(even) {
            background: #f8faff;
        }
        tr:hover td {
            background: #fff3e8;
        }
        @media (max-width: 820px) {
            .container {
                padding: 0 16px 32px;
                border-radius: 20px 20px 0 0;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #fff;
                padding: 16px 0 8px;
                border-top: 1px solid #e0e8f2;
                margin-top: 8px;
            }
            .nav-links li a {
                padding: 10px 18px;
                display: block;
                border-radius: 12px;
            }
            .hamburger {
                display: block;
            }
            #nav-toggle:checked~.nav-links {
                display: flex;
            }
            .nav-wrapper {
                flex-wrap: wrap;
            }
            .search-form {
                flex-wrap: wrap;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 8px;
            }
            .container {
                padding: 0 12px 24px;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.25rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .feedback-card {
                padding: 16px;
            }
        }
        .section-marker {
            scroll-margin-top: 24px;
        }
        .emoji-big {
            font-size: 1.4em;
            line-height: 1;
        }
        hr.divider {
            border: 0;
            height: 2px;
            background: linear-gradient(to right, #ff6b35, transparent);
            margin: 32px 0 24px;
            border-radius: 4px;
        }
        .eeat-author {
            display: flex;
            align-items: center;
            gap: 16px;
            background: #f4f9ff;
            padding: 14px 20px;
            border-radius: 16px;
            margin: 20px 0;
            border-left: 4px solid #004e8c;
        }
        .eeat-author .avatar {
            font-size: 2.4rem;
            color: #004e8c;
        }
        .eeat-author .info {
            font-size: 0.9rem;
        }
        .eeat-author .info strong {
            color: #0a1628;
        }
        .update-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #e6f0fa;
            padding: 6px 16px;
            border-radius: 40px;
            font-size: 0.8rem;
            color: #004e8c;
            font-weight: 500;
        }
