:root {
            --primary: #ff6b35;
            --secondary: #1a5fb4;
            --dark: #1e1e2c;
            --light: #f8f9fa;
            --gray: #6c757d;
            --success: #28a745;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--dark);
            background-color: #fff;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: var(--transition);
        }
        .btn:hover {
            background: #e55a2b;
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        header {
            background-color: white;
            box-shadow: var(--shadow);
            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(--primary);
            text-transform: uppercase;
            letter-spacing: -0.5px;
        }
        .logo span {
            color: var(--secondary);
        }
        nav ul {
            display: flex;
            gap: 25px;
        }
        nav a {
            font-weight: 600;
            font-size: 1rem;
            padding: 8px 0;
            position: relative;
        }
        nav a:hover {
            color: var(--primary);
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--primary);
            transition: width 0.3s;
        }
        nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark);
        }
        .breadcrumb {
            background-color: #f1f5f9;
            padding: 12px 20px;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin: 0 10px;
            color: var(--gray);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .hero {
            background: linear-gradient(135deg, var(--secondary) 0%, #2d87f0 100%);
            color: white;
            padding: 80px 20px;
            text-align: center;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        .search-box {
            max-width: 600px;
            margin: 40px auto;
            padding: 30px;
            background: white;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .search-box h2 {
            color: var(--dark);
            margin-bottom: 20px;
            text-align: center;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid #ddd;
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            outline: none;
        }
        .search-form input:focus {
            border-color: var(--primary);
        }
        .search-form button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 30px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: 600;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 20px;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            font-size: 1.1rem;
        }
        article section {
            margin-bottom: 60px;
        }
        article h2 {
            color: var(--secondary);
            font-size: 2.2rem;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--primary);
        }
        article h3 {
            color: var(--dark);
            font-size: 1.7rem;
            margin: 30px 0 15px;
        }
        article p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .highlight {
            background-color: #fff9e6;
            border-left: 5px solid var(--primary);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            text-align: center;
            border-top: 5px solid var(--primary);
        }
        .stat-card i {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 15px;
        }
        .image-wrap {
            margin: 30px 0;
            text-align: center;
        }
        .image-wrap img {
            border-radius: 12px;
            box-shadow: var(--shadow);
            margin: 0 auto;
        }
        .image-caption {
            font-style: italic;
            color: var(--gray);
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .content-img {
            max-height: 500px;
            object-fit: cover;
            width: 100%;
        }
        .sidebar-widget {
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: var(--shadow);
            margin-bottom: 30px;
        }
        .sidebar-widget h3 {
            color: var(--secondary);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
        }
        .rating-widget .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin-bottom: 20px;
        }
        .rating-widget .stars i {
            font-size: 1.8rem;
            color: #ffc107;
            cursor: pointer;
        }
        .rating-form input,
        .comment-form input,
        .comment-form textarea,
        .rating-form textarea {
            width: 100%;
            padding: 12px 15px;
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-family: inherit;
        }
        .comments-section {
            margin-top: 60px;
        }
        .comment {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-size: 0.9rem;
            color: var(--gray);
        }
        .web-links {
            background: #f1f5f9;
            padding: 40px 20px;
            margin-top: 60px;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
        }
        .web-link {
            background: white;
            padding: 12px 20px;
            border-radius: 8px;
            box-shadow: 0 3px 8px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 12px rgba(0,0,0,0.1);
        }
        .web-link a {
            color: var(--secondary);
            font-weight: 500;
        }
        .web-link a:hover {
            color: var(--primary);
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 40px 20px;
            text-align: center;
        }
        .footer-container {
            max-width: 800px;
            margin: 0 auto;
        }
        .copyright {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: white;
                box-shadow: var(--shadow);
                padding: 20px;
                text-align: center;
            }
            nav ul.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input,
            .search-form button {
                border-radius: 50px;
                margin-bottom: 10px;
                width: 100%;
            }
            .search-form button {
                padding: 15px;
            }
            article h2 {
                font-size: 1.8rem;
            }
        }
