        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f8f5f0;
            color: #333;
            line-height: 1.6;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            text-decoration: none;
            color: #2c5aa0;
            transition: color 0.3s;
        }
        a:hover {
            color: #d4a017;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: #2c5aa0;
            color: white;
            padding: 12px 24px;
            border-radius: 4px;
            border: none;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s, transform 0.2s;
        }
        .btn:hover {
            background: #1e3d6f;
            transform: translateY(-2px);
        }
        .section {
            padding: 60px 0;
        }
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: #2c5aa0;
            border-left: 5px solid #d4a017;
            padding-left: 15px;
        }
        .section-subtitle {
            font-size: 1.8rem;
            margin: 30px 0 15px;
            color: #444;
        }
        .highlight {
            background-color: #fff9e6;
            padding: 20px;
            border-left: 4px solid #d4a017;
            margin: 25px 0;
            border-radius: 0 4px 4px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        header {
            background: #1e3d6f;
            color: white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
        }
        .logo span {
            color: #d4a017;
        }
        .logo i {
            margin-right: 10px;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            color: white;
            font-weight: 600;
            padding: 8px 0;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #d4a017;
            transition: width 0.3s;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .mobile-nav {
            display: none;
            background: #2c5aa0;
            padding: 20px;
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin: 15px 0;
        }
        .mobile-nav a {
            color: white;
            font-weight: 600;
            display: block;
            padding: 10px;
            border-radius: 4px;
        }
        .mobile-nav a:hover {
            background: rgba(255,255,255,0.1);
        }
        .breadcrumb {
            background: #e9e4da;
            padding: 12px 20px;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin: 0 10px;
            color: #777;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            color: #2c5aa0;
        }
        .search-section {
            background: linear-gradient(to right, #2c5aa0, #1e3d6f);
            color: white;
            padding: 40px 0;
            text-align: center;
        }
        .search-box {
            max-width: 600px;
            margin: 0 auto;
        }
        .search-box h2 {
            font-size: 2rem;
            margin-bottom: 20px;
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-form input {
            flex: 1;
            padding: 15px;
            border: none;
            border-radius: 4px;
            font-size: 1rem;
        }
        .search-form button {
            background: #d4a017;
            color: white;
            border: none;
            border-radius: 4px;
            padding: 0 25px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #b88a14;
        }
        main {
            flex: 1;
            padding: 30px 0;
        }
        .article-content {
            background: white;
            border-radius: 8px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 40px;
        }
        .article-content h1 {
            font-size: 2.8rem;
            color: #1e3d6f;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .article-meta {
            color: #777;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
            display: flex;
            gap: 20px;
        }
        .article-body p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .article-body strong {
            color: #1e3d6f;
            font-weight: 700;
        }
        .article-body h2 {
            font-size: 2rem;
            margin: 2.5rem 0 1rem;
            color: #2c5aa0;
        }
        .article-body h3 {
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
            color: #444;
        }
        .image-with-caption {
            margin: 30px 0;
            text-align: center;
        }
        .image-with-caption img {
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin: 0 auto 10px;
        }
        .image-caption {
            font-style: italic;
            color: #666;
            font-size: 0.95rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: #f0f7ff;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            border-top: 4px solid #2c5aa0;
        }
        .stat-card i {
            font-size: 2.5rem;
            color: #2c5aa0;
            margin-bottom: 15px;
        }
        .quote {
            font-size: 1.3rem;
            color: #555;
            border-left: 5px solid #d4a017;
            padding-left: 20px;
            margin: 30px 0;
            font-style: italic;
        }
        .interaction-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 60px;
        }
        @media (max-width: 768px) {
            .interaction-section {
                grid-template-columns: 1fr;
            }
        }
        .comment-form, .rating-form {
            background: #f9f9f9;
            padding: 30px;
            border-radius: 8px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #444;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
        }
        .stars .star:hover,
        .stars .star.active {
            color: #ffc107;
        }
        .web-links-section {
            background: #e9e4da;
            padding: 40px 0;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
        }
        .web-link {
            background: white;
            padding: 15px;
            border-radius: 4px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
        }
        .web-link a {
            color: #2c5aa0;
            font-weight: 600;
        }
        footer {
            background: #1e3d6f;
            color: #ccc;
            padding: 40px 0 20px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-col h3 {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #d4a017;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col li {
            margin-bottom: 10px;
        }
        .footer-col a {
            color: #ccc;
        }
        .footer-col a:hover {
            color: #d4a017;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #2c5aa0;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 992px) {
            .section-title { font-size: 2rem; }
            .article-content h1 { font-size: 2.2rem; }
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .header-container { padding: 15px; }
            .article-content { padding: 25px; }
            .article-body h2 { font-size: 1.8rem; }
            .search-form { flex-direction: column; }
            .search-form button { padding: 15px; }
        }
        @media (max-width: 480px) {
            .section { padding: 40px 0; }
            .article-content { padding: 20px; }
            .article-content h1 { font-size: 1.8rem; }
            .section-title { font-size: 1.7rem; }
        }
