* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #1a5276;
            --secondary-color: #e74c3c;
            --accent-color: #f39c12;
            --text-color: #2c3e50;
            --light-bg: #ecf0f1;
            --white: #ffffff;
            --shadow: 0 2px 10px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--light-bg);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--white);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
        }
        .logo span {
            color: var(--secondary-color);
        }
        .search-form {
            display: flex;
            max-width: 400px;
            width: 100%;
        }
        .search-input {
            flex: 1;
            padding: 10px 15px;
            border: 2px solid var(--primary-color);
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }
        .search-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-btn:hover {
            background-color: #154360;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary-color);
            cursor: pointer;
        }
        nav {
            background-color: var(--primary-color);
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            position: relative;
        }
        .nav-links a {
            display: block;
            color: white;
            text-decoration: none;
            padding: 15px 20px;
            transition: var(--transition);
        }
        .nav-links a:hover {
            background-color: rgba(255,255,255,0.1);
        }
        .breadcrumb {
            padding: 10px 0;
            background-color: var(--light-bg);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--primary-color);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            padding: 30px 0;
        }
        .article-header {
            margin-bottom: 30px;
            text-align: center;
        }
        h1 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 20px;
            color: #7f8c8d;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        .featured-image {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 20px 0;
            box-shadow: var(--shadow);
        }
        .content-section {
            background-color: var(--white);
            padding: 30px;
            border-radius: 8px;
            box-shadow: var(--shadow);
            margin-bottom: 30px;
        }
        h2 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin: 25px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--light-bg);
        }
        h3 {
            font-size: 1.4rem;
            color: var(--secondary-color);
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 15px;
            text-align: justify;
        }
        .highlight {
            background-color: #fff9e6;
            border-left: 4px solid var(--accent-color);
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 4px 4px 0;
        }
        .tip-box {
            background-color: #e8f4fc;
            border: 1px solid #aed6f1;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
        }
        .tip-box h4 {
            color: var(--primary-color);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }
        .stat-card {
            background-color: var(--light-bg);
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
        .stat-number {
            font-size: 2rem;
            font-weight: bold;
            color: var(--primary-color);
            display: block;
        }
        .stat-label {
            color: var(--text-color);
            font-size: 0.9rem;
        }
        .interactive-section {
            background-color: var(--white);
            padding: 30px;
            border-radius: 8px;
            box-shadow: var(--shadow);
            margin: 30px 0;
        }
        .rating-system {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin: 20px 0;
        }
        .stars {
            display: flex;
            gap: 5px;
        }
        .star {
            font-size: 1.5rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover, .star.active {
            color: var(--accent-color);
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 20px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        label {
            font-weight: bold;
            color: var(--primary-color);
        }
        input, textarea, select {
            padding: 10px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: inherit;
            font-size: 1rem;
        }
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1rem;
            transition: var(--transition);
            align-self: flex-start;
        }
        .submit-btn:hover {
            background-color: #154360;
        }
        .internal-links {
            background-color: var(--white);
            padding: 30px;
            border-radius: 8px;
            box-shadow: var(--shadow);
            margin: 30px 0;
        }
        .web-link {
            margin-bottom: 10px;
        }
        .web-link a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        .web-link a:hover {
            color: var(--secondary-color);
            text-decoration: underline;
        }
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 30px 0;
            text-align: center;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .copyright {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .search-form {
                order: 3;
                margin-top: 15px;
                max-width: 100%;
            }
            .mobile-menu-btn {
                display: block;
            }
            .nav-links {
                flex-direction: column;
                display: none;
            }
            .nav-links.active {
                display: flex;
            }
            h1 {
                font-size: 2rem;
            }
            .content-section, .interactive-section {
                padding: 20px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.5s ease forwards;
        }
        .pulse {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        a:focus, button:focus, input:focus, textarea:focus, select:focus {
            outline: 2px solid var(--accent-color);
            outline-offset: 2px;
        }
