        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f9fa;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        a { color: #1a73e8; text-decoration: none; transition: color 0.3s; }
        a:hover { color: #0d47a1; text-decoration: underline; }
        img { max-width: 100%; height: auto; display: block; }
        ul, ol { padding-left: 1.5em; margin: 1em 0; }
        .site-header {
            background: linear-gradient(135deg, #0a2e5c 0%, #1a5fb4 100%);
            color: white;
            padding: 1.5rem 0;
            border-radius: 0 0 12px 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            margin-bottom: 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.2rem;
            font-weight: bold;
            color: #FFD700;
            text-shadow: 2px 2px 0 #0a2e5c;
            letter-spacing: 1px;
        }
        .my-logo a { color: inherit; text-decoration: none; }
        .my-logo a:hover { color: #fff; text-shadow: 3px 3px 0 #0a2e5c; }
        .nav-desktop { display: flex; gap: 1.8rem; }
        .nav-desktop a {
            color: #e3f2fd;
            font-weight: 600;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
        }
        .nav-desktop a:hover {
            color: #FFD700;
            border-bottom-color: #FFD700;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            width: 100%;
            background: #0a2e5c;
            border-radius: 8px;
            margin-top: 1rem;
            padding: 1rem;
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a {
            color: #e3f2fd;
            padding: 0.8rem;
            border-bottom: 1px solid #1a5fb4;
        }
        .nav-mobile a:last-child { border-bottom: none; }
        .breadcrumb {
            background: #e9ecef;
            padding: 0.8rem 1rem;
            border-radius: 6px;
            margin: 1rem 0 2rem;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: #495057; }
        .breadcrumb a:hover { color: #1a73e8; }
        .breadcrumb span { color: #6c757d; }
        .search-container {
            background: #fff;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            margin: 2rem 0;
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 1rem auto 0;
        }
        .search-input {
            flex-grow: 1;
            padding: 0.9rem 1.2rem;
            border: 2px solid #1a73e8;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-btn {
            background: #1a73e8;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-btn:hover { background: #0d47a1; }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .last-updated {
            font-style: italic;
            color: #6c757d;
            text-align: right;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
        }
        h1 {
            font-size: 2.8rem;
            color: #0a2e5c;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 6px solid #FFD700;
            padding-left: 1rem;
        }
        h2 {
            font-size: 2rem;
            color: #1a5fb4;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e9ecef;
        }
        h3 {
            font-size: 1.5rem;
            color: #333;
            margin: 2rem 0 0.8rem;
        }
        h4 {
            font-size: 1.2rem;
            color: #555;
            margin: 1.5rem 0 0.5rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight-box {
            background: #e8f4fd;
            border-left: 4px solid #1a73e8;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .img-container {
            margin: 2rem auto;
            text-align: center;
        }
        .img-container img {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            max-width: 800px;
            margin: 0 auto;
        }
        .img-caption {
            font-style: italic;
            color: #666;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .content-link {
            background: #f1f8ff;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .sidebar {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 {
            color: #1a5fb4;
            margin-top: 0;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e9ecef;
        }
        .sidebar ul { list-style: none; padding-left: 0; }
        .sidebar li { margin-bottom: 0.8rem; }
        .sidebar a { display: block; padding: 0.5rem 0; }
        .interactive-section {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin: 3rem 0;
        }
        .form-group { margin-bottom: 1.5rem; }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #444;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ced4da;
            border-radius: 6px;
            font-family: inherit;
            font-size: 1rem;
        }
        textarea { min-height: 120px; resize: vertical; }
        .form-row {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .form-row .form-group { flex: 1; min-width: 200px; }
        .submit-btn {
            background: linear-gradient(to right, #1a73e8, #0a2e5c);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 12px rgba(26, 115, 232, 0.3);
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ddd;
            margin: 0.5rem 0;
        }
        .star-rating span:hover,
        .star-rating span.active { color: #FFD700; }
        .site-footer {
            background: #0a2e5c;
            color: #e3f2fd;
            padding: 3rem 0 1.5rem;
            border-radius: 12px 12px 0 0;
            margin-top: 4rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo { font-size: 1.8rem; font-weight: bold; color: #FFD700; margin-bottom: 1rem; }
        .friend-links {
            background: rgba(255,255,255,0.05);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 1.5rem 0;
        }
        .friend-links h4 { color: #FFD700; margin-top: 0; }
        .friend-link {
            display: inline-block;
            background: rgba(255,255,255,0.1);
            padding: 0.5rem 1rem;
            margin: 0.3rem;
            border-radius: 4px;
            color: #e3f2fd;
        }
        .friend-link:hover {
            background: rgba(255,255,255,0.2);
            color: white;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #1a5fb4;
            font-size: 0.9rem;
            color: #a0c8ff;
        }
        @media (max-width: 768px) {
            .header-container { flex-direction: column; align-items: flex-start; }
            .nav-desktop { display: none; }
            .hamburger { display: block; align-self: flex-end; margin-top: -3rem; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.7rem; }
            article, .sidebar { padding: 1.5rem; }
            .main-content { gap: 1.5rem; }
        }
