* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #1e3a8a;
            --secondary: #dc2626;
            --accent: #f59e0b;
            --light: #f8fafc;
            --dark: #0f172a;
            --gray: #64748b;
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--primary);
            color: white;
            padding: 1rem 0;
            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;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 900;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a:hover {
            color: var(--accent);
        }
        .logo i {
            color: var(--accent);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        nav a:hover {
            color: var(--accent);
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--accent);
            transition: var(--transition);
        }
        nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #e2e8f0;
            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: var(--gray);
        }
        .search-section {
            background: linear-gradient(135deg, var(--primary), #1e40af);
            padding: 2rem 0;
            text-align: center;
            color: white;
            margin-bottom: 2rem;
        }
        .search-section h2 {
            margin-bottom: 1rem;
            font-size: 2rem;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1rem;
        }
        .search-btn {
            background-color: var(--accent);
            color: white;
            border: none;
            padding: 1rem 2rem;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .search-btn:hover {
            background-color: #e69500;
        }
        main {
            padding: 2rem 0;
        }
        article {
            background-color: white;
            border-radius: 12px;
            padding: 3rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 3rem;
        }
        h1 {
            color: var(--primary);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 6px solid var(--secondary);
            padding-left: 1rem;
        }
        h2 {
            color: var(--primary);
            font-size: 2rem;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e2e8f0;
        }
        h3 {
            color: var(--dark);
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .intro {
            font-size: 1.2rem;
            color: var(--gray);
            font-weight: 500;
            background: #f1f5f9;
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 2.5rem;
        }
        .highlight {
            background-color: #fffbeb;
            border-left: 4px solid var(--accent);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight p:last-child {
            margin-bottom: 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: linear-gradient(145deg, #ffffff, #f1f5f9);
            border-radius: 10px;
            padding: 1.5rem;
            text-align: center;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
            border-top: 5px solid var(--primary);
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--primary);
            display: block;
        }
        .stat-label {
            color: var(--gray);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .article-img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 12px;
            margin: 2rem auto;
            display: block;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--gray);
            margin-top: -1.5rem;
            margin-bottom: 2.5rem;
        }
        .quote {
            font-size: 1.4rem;
            color: var(--primary);
            text-align: center;
            padding: 2rem;
            font-style: italic;
            background-color: #f8fafc;
            border-radius: 12px;
            margin: 3rem 0;
            position: relative;
        }
        .quote::before,
        .quote::after {
            content: '"';
            font-size: 4rem;
            color: var(--accent);
            opacity: 0.3;
            position: absolute;
        }
        .quote::before {
            top: 10px;
            left: 20px;
        }
        .quote::after {
            bottom: 10px;
            right: 20px;
        }
        .interactive-section {
            background-color: #f8fafc;
            border-radius: 12px;
            padding: 2.5rem;
            margin: 3rem 0;
            border: 1px solid #e2e8f0;
        }
        .interactive-section h3 {
            color: var(--primary);
            margin-top: 0;
        }
        .rating-form,
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 1.5rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--dark);
        }
        .form-input,
        .form-textarea {
            padding: 0.8rem 1rem;
            border: 1px solid #cbd5e1;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #cbd5e1;
            cursor: pointer;
        }
        .stars i:hover,
        .stars i.active {
            color: var(--accent);
        }
        .btn {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            align-self: flex-start;
        }
        .btn:hover {
            background-color: var(--secondary);
            transform: translateY(-2px);
        }
        .footer-links {
            background-color: var(--dark);
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .footer-links .container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: #1e293b;
            padding: 1.5rem;
            border-radius: 8px;
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: #334155;
            transform: translateX(5px);
        }
        .web-link a {
            color: #cbd5e1;
            display: block;
        }
        .web-link a:hover {
            color: white;
        }
        footer {
            background-color: #0f172a;
            color: #94a3b8;
            padding: 2rem 0;
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .copyright {
            font-size: 0.9rem;
        }
        .social-links {
            display: flex;
            gap: 1.5rem;
            font-size: 1.5rem;
        }
        .social-links a {
            color: #94a3b8;
        }
        .social-links a:hover {
            color: var(--accent);
        }
        @media (max-width: 992px) {
            h1 {
                font-size: 2.4rem;
            }
            .header-container {
                flex-wrap: wrap;
            }
            nav {
                width: 100%;
                order: 3;
                margin-top: 1rem;
                display: none;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                gap: 0;
            }
            nav li {
                width: 100%;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            nav a {
                display: block;
                padding: 1rem;
            }
            .hamburger {
                display: block;
            }
            article {
                padding: 2rem;
            }
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .search-form {
                flex-direction: column;
                border-radius: 12px;
            }
            .search-input,
            .search-btn {
                width: 100%;
                border-radius: 0;
            }
            .interactive-section {
                padding: 1.5rem;
            }
            .footer-links .container {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
        }
        @media print {
            header, .search-section, .interactive-section, .footer-links, footer {
                display: none;
            }
            body {
                background-color: white;
                color: black;
            }
            a {
                color: black;
                text-decoration: underline;
            }
        }
