        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Nirmala UI', 'Arial Unicode MS', sans-serif;
        }
        :root {
            --primary-color: #FF6B35;
            --secondary-color: #004E89;
            --accent-color: #FFA630;
            --text-color: #333333;
            --light-text: #666666;
            --bg-color: #F7F9FC;
            --card-bg: #FFFFFF;
            --border-color: #E1E5EB;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.7;
            font-size: 18px;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            color: var(--secondary-color);
            margin-bottom: 1rem;
            line-height: 1.3;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            margin-top: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        h1:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 120px;
            height: 4px;
            background: var(--primary-color);
            border-radius: 2px;
        }
        h2 {
            font-size: 2.2rem;
            margin-top: 3rem;
            border-left: 5px solid var(--accent-color);
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.8rem;
            margin-top: 2.5rem;
            color: var(--primary-color);
        }
        h4 {
            font-size: 1.5rem;
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary-color);
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center {
            text-align: center;
        }
        .text-highlight {
            color: var(--primary-color);
            font-weight: 700;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .card {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 25px;
            box-shadow: var(--shadow);
            margin-bottom: 30px;
            border: 1px solid var(--border-color);
        }
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
            padding: 14px 28px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            font-size: 1.1rem;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
            text-decoration: none;
            color: white;
        }
        header {
            background-color: white;
            box-shadow: 0 2px 15px 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 {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--secondary-color);
            display: flex;
            align-items: center;
        }
        .logo i {
            color: var(--primary-color);
            margin-right: 10px;
            font-size: 2rem;
        }
        .logo span {
            color: var(--primary-color);
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav li {
            margin-left: 30px;
        }
        nav a {
            color: var(--text-color);
            font-weight: 600;
            font-size: 1.1rem;
        }
        nav a:hover {
            color: var(--primary-color);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--secondary-color);
        }
        .breadcrumb {
            background-color: #f0f4f8;
            padding: 15px 0;
            margin-bottom: 30px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            margin-right: 10px;
            display: flex;
            align-items: center;
        }
        .breadcrumb li:not(:last-child):after {
            content: '>';
            margin-left: 10px;
            color: var(--light-text);
        }
        .breadcrumb a {
            color: var(--light-text);
        }
        .breadcrumb a:hover {
            color: var(--primary-color);
        }
        main {
            padding: 40px 0;
        }
        .article-content {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: var(--shadow);
            margin-bottom: 40px;
        }
        .search-section {
            margin: 40px 0;
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex: 1;
            padding: 18px 25px;
            border: 2px solid var(--border-color);
            border-radius: 50px 0 0 50px;
            font-size: 1.1rem;
            outline: none;
            transition: var(--transition);
        }
        .search-input:focus {
            border-color: var(--primary-color);
        }
        .search-btn {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 0 30px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .search-btn:hover {
            background: var(--secondary-color);
        }
        .article-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 12px;
            margin: 30px auto;
            display: block;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--light-text);
            margin-top: 10px;
            margin-bottom: 30px;
        }
        ul, ol {
            margin-left: 30px;
            margin-bottom: 25px;
        }
        li {
            margin-bottom: 10px;
        }
        .highlight-box {
            background: linear-gradient(135deg, #e6f2ff, #f0f8ff);
            border-left: 5px solid var(--secondary-color);
            padding: 25px;
            margin: 35px 0;
            border-radius: 0 10px 10px 0;
        }
        .rating-section {
            margin: 50px 0;
            text-align: center;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            margin: 20px 0;
            direction: ltr;
        }
        .star {
            font-size: 2.5rem;
            color: #ddd;
            margin: 0 5px;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: var(--accent-color);
        }
        .comments-section {
            margin: 60px 0;
        }
        .comment-form {
            background: var(--card-bg);
            padding: 30px;
            border-radius: 12px;
            margin-bottom: 40px;
        }
        .form-group {
            margin-bottom: 25px;
        }
        .form-label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
        }
        .form-input, .form-textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-input:focus, .form-textarea:focus {
            border-color: var(--primary-color);
            outline: none;
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
            margin: 50px 0;
        }
        .web-link {
            background: white;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        footer {
            background: var(--secondary-color);
            color: white;
            padding: 50px 0 30px;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #ddd;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #ccc;
        }
        @media (max-width: 992px) {
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.6rem;
            }
            .article-content {
                padding: 30px;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                background: white;
                flex-direction: column;
                align-items: center;
                padding: 30px 0;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                transition: var(--transition);
                z-index: 999;
            }
            nav ul.active {
                left: 0;
            }
            nav li {
                margin: 15px 0;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input {
                border-radius: 50px;
                margin-bottom: 15px;
            }
            .search-btn {
                border-radius: 50px;
                padding: 15px;
            }
            .header-container {
                padding: 15px;
            }
        }
        @media (max-width: 576px) {
            body {
                font-size: 16px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .article-content {
                padding: 20px;
            }
            .card {
                padding: 20px;
            }
        }
        @media print {
            header, nav, .search-section, .comments-section, .rating-section, footer {
                display: none;
            }
            .article-content {
                box-shadow: none;
                padding: 0;
            }
            body {
                font-size: 12pt;
                color: black;
                background: white;
            }
        }
