        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f4f7fb;
            color: #1a2634;
            line-height: 1.7;
            padding: 0 16px;
            max-width: 1320px;
            margin: 0 auto;
        }
        a {
            color: #0f4c81;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus-visible {
            color: #c9a84c;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 600;
            line-height: 1.3;
            color: #0a2e4a;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.4rem;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #c9a84c;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #1a4a6a;
        }
        h4 {
            font-size: 1.15rem;
            color: #2a5a7a;
        }
        p {
            margin-bottom: 1.1rem;
        }
        .container {
            background: #ffffff;
            border-radius: 24px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
            padding: 20px 24px 40px;
            margin: 20px 0 40px;
        }
        @media (min-width:768px) {
            .container {
                padding: 32px 48px 60px;
            }
            body {
                padding: 0 24px;
            }
            h1 {
                font-size: 3rem;
            }
            h2 {
                font-size: 2.2rem;
            }
        }
        header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0 8px;
            border-bottom: 2px solid #e2e9f0;
            position: relative;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #0f4c81;
            letter-spacing: -0.03em;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            color: #c9a84c;
            font-size: 2rem;
        }
        .my-logo:hover {
            color: #c9a84c;
            text-decoration: none;
        }
        .my-logo span {
            font-weight: 300;
            color: #5a7a9a;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-links {
            display: none;
            flex-direction: column;
            position: absolute;
            top: 68px;
            left: 0;
            right: 0;
            background: #ffffff;
            border-radius: 0 0 20px 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
            padding: 18px 24px;
            gap: 12px;
            z-index: 99;
            border: 1px solid #e2e9f0;
        }
        .nav-links.open {
            display: flex;
        }
        .nav-links a {
            font-weight: 500;
            padding: 6px 0;
            border-bottom: 1px solid #f0f4f8;
            font-size: 1.05rem;
        }
        .nav-links a:last-child {
            border-bottom: none;
        }
        .hamburger {
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #0f4c81;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #eef4fa;
        }
        @media (min-width:900px) {
            .hamburger {
                display: none;
            }
            .nav-links {
                display: flex !important;
                flex-direction: row;
                position: static;
                box-shadow: none;
                border: none;
                background: transparent;
                padding: 0;
                gap: 20px;
            }
            .nav-links a {
                border-bottom: none;
                padding: 4px 0;
                font-size: 1rem;
                border-bottom: 2px solid transparent;
            }
            .nav-links a:hover {
                border-bottom-color: #c9a84c;
            }
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px 12px;
            padding: 12px 0 4px;
            font-size: 0.9rem;
            color: #5a7a9a;
        }
        .breadcrumb a {
            color: #0f4c81;
        }
        .breadcrumb a:hover {
            color: #c9a84c;
        }
        .breadcrumb i {
            font-size: 0.7rem;
            color: #aabbcc;
        }
        .search-box {
            display: flex;
            gap: 8px;
            margin: 18px 0 24px;
            max-width: 580px;
            background: #f4f7fb;
            border-radius: 60px;
            padding: 4px 4px 4px 20px;
            border: 1px solid #dce4ec;
            transition: border 0.2s;
        }
        .search-box:focus-within {
            border-color: #c9a84c;
            box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
        }
        .search-box input {
            flex: 1;
            border: none;
            background: transparent;
            padding: 12px 0;
            font-size: 1rem;
            outline: none;
            color: #1a2634;
        }
        .search-box button {
            background: #0f4c81;
            color: #fff;
            border: none;
            border-radius: 60px;
            padding: 10px 24px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
        }
        .search-box button:hover {
            background: #c9a84c;
            color: #0a2e4a;
        }
        .feature-image {
            margin: 28px 0 32px;
            border-radius: 16px;
            overflow: hidden;
            background: #eaf0f6;
            position: relative;
        }
        .feature-image img {
            width: 100%;
            object-fit: cover;
            min-height: 200px;
            max-height: 480px;
        }
        .feature-image figcaption {
            padding: 12px 16px;
            font-size: 0.9rem;
            color: #3a5a7a;
            background: #f4f8fc;
            border-top: 1px solid #dce4ec;
        }
        .content a {
            font-weight: 500;
            border-bottom: 1px dotted #b0c8dd;
        }
        .content a:hover {
            border-bottom-style: solid;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 28px;
            margin: 40px 0 20px;
            padding-top: 28px;
            border-top: 3px solid #e2e9f0;
        }
        @media (min-width:800px) {
            .feedback-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        .comment-area,
        .rating-area {
            background: #f8fafc;
            border-radius: 20px;
            padding: 24px 20px;
            border: 1px solid #e2e9f0;
        }
        .comment-area h3,
        .rating-area h3 {
            margin-top: 0;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .comment-area textarea,
        .rating-area input,
        .rating-area select {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #d0dce8;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            background: #fff;
            transition: border 0.2s;
        }
        .comment-area textarea:focus,
        .rating-area input:focus,
        .rating-area select:focus {
            border-color: #c9a84c;
            outline: none;
            box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
        }
        .comment-area textarea {
            min-height: 110px;
            resize: vertical;
        }
        .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 12px;
        }
        .form-row input {
            flex: 1;
            min-width: 140px;
        }
        .btn {
            background: #0f4c81;
            color: #fff;
            border: none;
            border-radius: 60px;
            padding: 10px 28px;
            font-size: 1rem;
            cursor: pointer;
            font-weight: 500;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn:hover {
            background: #c9a84c;
            color: #0a2e4a;
            transform: scale(1.02);
        }
        .btn:active {
            transform: scale(0.97);
        }
        .star-select {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #d0dce8;
            cursor: pointer;
            margin: 8px 0;
            flex-wrap: wrap;
        }
        .star-select i {
            transition: color 0.15s, transform 0.1s;
        }
        .star-select i:hover,
        .star-select i.active {
            color: #c9a84c;
            transform: scale(1.1);
        }
        .rating-area select {
            max-width: 180px;
        }
        friend-link {
            display: block;
            padding: 24px 0 12px;
            font-size: 0.95rem;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 14px;
            background: #eef4fa;
            border-radius: 30px;
            font-weight: 500;
            transition: background 0.2s;
        }
        friend-link a:hover {
            background: #c9a84c;
            color: #fff;
            text-decoration: none;
        }
        friend-link::before {
            content: "🌐 Friends & Partners  ";
            font-weight: 600;
            color: #0a2e4a;
            display: block;
            margin-bottom: 8px;
            font-size: 1.05rem;
            letter-spacing: 0.3px;
        }
        footer {
            border-top: 2px solid #e2e9f0;
            padding: 28px 0 20px;
            margin-top: 20px;
            text-align: center;
            font-size: 0.9rem;
            color: #5a7a9a;
        }
        footer .copyright {
            font-weight: 400;
            margin-top: 8px;
        }
        footer .copyright strong {
            color: #0f4c81;
        }
        .last-updated {
            display: inline-block;
            background: #eef4fa;
            padding: 4px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #2a5a7a;
            margin-bottom: 16px;
            font-weight: 500;
        }
        .last-updated i {
            margin-right: 6px;
            color: #c9a84c;
        }
        .eeat-badge {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 24px;
            background: #f0f6fd;
            border-radius: 16px;
            padding: 14px 20px;
            margin: 18px 0 24px;
            font-size: 0.9rem;
            border: 1px solid #dce4ec;
            color: #1a4a6a;
        }
        .eeat-badge i {
            color: #c9a84c;
            margin-right: 6px;
        }
        .eeat-badge span {
            font-weight: 500;
        }
        @media (max-width:480px) {
            .container {
                padding: 16px 12px 30px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
                padding-left: 0.6rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .search-box button span {
                display: none;
            }
            .search-box button {
                padding: 10px 16px;
            }
            .search-box {
                padding-left: 14px;
            }
        }
        :target {
            scroll-margin-top: 80px;
        }
        @media print {
            .search-box,
            .feedback-grid,
            .hamburger,
            .nav-links {
                display: none !important;
            }
            .container {
                box-shadow: none;
                border: 1px solid #ddd;
            }
            body {
                padding: 0 10px;
            }
        }
