* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #f8f4f0;
            color: #222;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #1a3c6e;
            text-decoration: none;
            transition: all 0.2s ease;
        }
        a:hover {
            color: #e74c3c;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0b1a3a 0%, #1a3c6e 50%, #2a5a9e 100%);
            color: #fff;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 800;
            color: #f5d742;
            text-shadow: 2px 2px 0 #b8860b, 4px 4px 0 rgba(0, 0, 0, 0.2);
            letter-spacing: 1px;
            transition: transform 0.3s;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            font-size: 32px;
            color: #fff;
            text-shadow: none;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
            color: #f5d742;
        }
        .my-logo span {
            font-size: 14px;
            font-weight: 400;
            color: #c0d0f0;
            display: block;
            letter-spacing: 0;
            text-shadow: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f5d742;
            color: #f5d742;
            font-size: 26px;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #f5d742;
            color: #0b1a3a;
        }
        .main-nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #e0e8f8;
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 14px;
            transition: 0.25s;
            white-space: nowrap;
        }
        .main-nav a i {
            margin-right: 6px;
        }
        .main-nav a:hover {
            background: rgba(245, 215, 66, 0.2);
            color: #f5d742;
            text-decoration: none;
        }
        .main-nav a.active {
            background: #f5d742;
            color: #0b1a3a;
        }
        .breadcrumb {
            background: #fff;
            padding: 12px 0;
            border-bottom: 1px solid #e0d6cc;
            font-size: 14px;
        }
        .breadcrumb ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 12px;
            color: #b0a090;
        }
        .breadcrumb a {
            color: #1a3c6e;
        }
        .breadcrumb .current {
            color: #888;
            font-weight: 500;
        }
        .hero {
            background: linear-gradient(145deg, #0b1a3a, #1a3c6e);
            color: #fff;
            padding: 50px 0 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "✨";
            font-size: 120px;
            position: absolute;
            right: -20px;
            bottom: -30px;
            opacity: 0.08;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #f5d742;
            text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
            margin-bottom: 12px;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 720px;
            margin: 0 auto;
            opacity: 0.92;
        }
        .hero .last-updated {
            display: inline-block;
            margin-top: 16px;
            background: rgba(255, 255, 255, 0.12);
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 14px;
            color: #c0d0f0;
        }
        .page-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            min-width: 0;
        }
        .main-content h2 {
            font-size: 2rem;
            color: #0b1a3a;
            margin: 40px 0 16px;
            padding-bottom: 8px;
            border-bottom: 4px solid #f5d742;
            position: relative;
        }
        .main-content h2 i {
            color: #e74c3c;
            margin-right: 12px;
        }
        .main-content h3 {
            font-size: 1.5rem;
            color: #1a3c6e;
            margin: 30px 0 12px;
        }
        .main-content h3 i {
            color: #f5d742;
            margin-right: 10px;
        }
        .main-content h4 {
            font-size: 1.2rem;
            color: #2a5a9e;
            margin: 22px 0 10px;
            font-weight: 600;
        }
        .main-content p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: #2c2c2c;
        }
        .main-content ul,
        .main-content ol {
            margin: 0 0 20px 28px;
        }
        .main-content li {
            margin-bottom: 8px;
            font-size: 1.02rem;
        }
        .main-content .highlight-box {
            background: #eef5ff;
            border-left: 6px solid #1a3c6e;
            padding: 20px 26px;
            border-radius: 10px;
            margin: 24px 0;
        }
        .main-content .highlight-box strong {
            color: #0b1a3a;
        }
        .main-content .emoji-big {
            font-size: 1.8rem;
            display: inline-block;
            margin-right: 8px;
        }
        .featured-image-wrapper {
            margin: 30px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            background: #fff;
            padding: 8px;
        }
        .featured-image-wrapper img {
            border-radius: 10px;
            width: 100%;
        }
        .featured-image-wrapper figcaption {
            padding: 12px 16px 6px;
            font-size: 14px;
            color: #666;
            font-style: italic;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 24px 20px;
            margin-bottom: 28px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            border: 1px solid #e8e0d8;
        }
        .sidebar-card h3 {
            font-size: 1.3rem;
            color: #0b1a3a;
            margin-bottom: 16px;
            border-bottom: 3px solid #f5d742;
            padding-bottom: 8px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card li {
            margin-bottom: 10px;
        }
        .sidebar-card a {
            display: block;
            padding: 8px 12px;
            background: #f8f4f0;
            border-radius: 8px;
            transition: 0.2s;
            font-weight: 500;
            color: #1a3c6e;
        }
        .sidebar-card a i {
            margin-right: 8px;
            color: #e74c3c;
        }
        .sidebar-card a:hover {
            background: #0b1a3a;
            color: #f5d742;
            text-decoration: none;
            transform: translateX(4px);
        }
        .form-card {
            background: #fff;
            border-radius: 16px;
            padding: 28px 26px;
            margin: 32px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid #e8e0d8;
        }
        .form-card h3 {
            font-size: 1.6rem;
            color: #0b1a3a;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .form-card h3 i {
            color: #f5d742;
        }
        .form-group {
            margin-bottom: 18px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 6px;
            color: #1a3c6e;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-size: 16px;
            font-family: inherit;
            transition: 0.2s;
            background: #fafafa;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #1a3c6e;
            outline: none;
            background: #fff;
            box-shadow: 0 0 0 4px rgba(26, 60, 110, 0.08);
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            padding: 12px 32px;
            border: none;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .btn-primary {
            background: #0b1a3a;
            color: #f5d742;
        }
        .btn-primary:hover {
            background: #1a3c6e;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(11, 26, 58, 0.25);
        }
        .btn-secondary {
            background: #f5d742;
            color: #0b1a3a;
        }
        .btn-secondary:hover {
            background: #e6c83a;
            transform: translateY(-2px);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 28px;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #ccc;
            transition: 0.2s;
            cursor: pointer;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5b40a;
        }
        .comment-item {
            background: #f8f4f0;
            padding: 16px 20px;
            border-radius: 12px;
            margin-bottom: 14px;
            border-left: 4px solid #1a3c6e;
        }
        .comment-item strong {
            color: #0b1a3a;
        }
        .comment-item .date {
            font-size: 13px;
            color: #888;
            margin-left: 12px;
        }
        .comment-item p {
            margin-top: 6px;
            margin-bottom: 0 !important;
        }
        friend-link {
            display: block;
            background: #0b1a3a;
            color: #e0e8f8;
            padding: 28px 24px;
            border-radius: 16px;
            margin: 30px 0 10px;
            text-align: center;
        }
        friend-link a {
            color: #f5d742;
            font-weight: 600;
            padding: 0 12px;
        }
        friend-link a:hover {
            color: #fff;
            text-decoration: underline;
        }
        friend-link::before {
            content: "🤝 Friends & Partners";
            display: block;
            font-size: 1.2rem;
            font-weight: 700;
            color: #f5d742;
            margin-bottom: 12px;
        }
        .site-footer {
            background: #0b1a3a;
            color: #b0c0d8;
            padding: 32px 0 20px;
            border-top: 4px solid #f5d742;
            margin-top: 30px;
        }
        .site-footer .copyright {
            text-align: center;
            font-size: 14px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 18px;
            margin-top: 18px;
        }
        .site-footer .copyright strong {
            color: #f5d742;
        }
        @media (max-width: 900px) {
            .page-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .my-logo {
                font-size: 22px;
            }
            .my-logo span {
                font-size: 12px;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: rgba(11, 26, 58, 0.98);
                padding: 16px 0;
                border-radius: 12px;
                margin-top: 8px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 12px 20px;
                border-radius: 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            }
            .main-nav a:last-child {
                border-bottom: none;
            }
            .breadcrumb ul {
                font-size: 13px;
            }
            .sidebar-card a {
                padding: 10px 14px;
            }
            .form-card {
                padding: 20px 16px;
            }
            .star-rating {
                font-size: 24px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .main-content h2 {
                font-size: 1.5rem;
            }
            .main-content h3 {
                font-size: 1.25rem;
            }
            .main-content p {
                font-size: 0.98rem;
            }
            .my-logo {
                font-size: 18px;
            }
            .btn {
                padding: 10px 22px;
                font-size: 14px;
            }
        }
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeIn 0.6s ease forwards;
        }
        @keyframes fadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .text-muted {
            color: #888;
            font-size: 14px;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .gap-8 {
            gap: 8px;
        }
        .tag {
            display: inline-block;
            background: #eef5ff;
            color: #1a3c6e;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
        }
