:root {
            --primary: #FF6B35;
            --secondary: #1A535C;
            --accent: #FFD166;
            --dark: #0D1B2A;
            --light: #F7F9FC;
            --text: #333333;
            --gray: #8D99AE;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --radius: 8px;
            --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.6;
            color: var(--text);
            background-color: var(--light);
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--dark);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            text-decoration: none;
            color: var(--accent);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo span {
            color: var(--primary);
            font-style: italic;
        }
        .desktop-nav {
            display: flex;
            gap: 25px;
        }
        .desktop-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: var(--radius);
            transition: var(--transition);
        }
        .desktop-nav a:hover {
            background-color: var(--primary);
            color: var(--dark);
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--accent);
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--dark);
            padding: 20px;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            box-shadow: var(--shadow);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: white;
            text-decoration: none;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-weight: 600;
        }
        .mobile-nav a:hover {
            color: var(--primary);
        }
        .breadcrumb {
            background-color: #f0f0f0;
            padding: 10px 0;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--secondary);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .hero {
            background: linear-gradient(135deg, var(--secondary), var(--dark));
            color: white;
            padding: 60px 20px;
            text-align: center;
            border-bottom: 5px solid var(--primary);
        }
        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        .search-section {
            background-color: white;
            padding: 30px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin: -30px auto 40px;
            max-width: 800px;
            position: relative;
            z-index: 10;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid var(--gray);
            border-radius: var(--radius) 0 0 var(--radius);
            font-size: 1rem;
        }
        .search-btn {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 var(--radius) var(--radius) 0;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-btn:hover {
            background-color: #e05a2b;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 40px 0;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        main {
            background-color: white;
            padding: 40px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        article h2 {
            color: var(--secondary);
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
        }
        article h3 {
            color: var(--primary);
            margin: 25px 0 10px;
        }
        article p {
            margin-bottom: 20px;
            text-align: justify;
        }
        article ul, article ol {
            margin-left: 20px;
            margin-bottom: 20px;
        }
        article li {
            margin-bottom: 8px;
        }
        .highlight {
            background-color: rgba(255, 214, 102, 0.2);
            padding: 20px;
            border-left: 4px solid var(--accent);
            margin: 25px 0;
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .article-img {
            max-width: 100%;
            height: auto;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .caption {
            font-style: italic;
            color: var(--gray);
            margin-top: 10px;
            font-size: 0.9rem;
        }
        aside {
            background-color: white;
            padding: 30px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-section {
            margin-bottom: 30px;
        }
        .sidebar-section h3 {
            color: var(--secondary);
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 1px solid #eee;
        }
        .rating-form, .comment-form {
            background-color: #f9f9f9;
            padding: 25px;
            border-radius: var(--radius);
            margin: 40px 0;
            border: 1px solid #eee;
        }
        .rating-form h3, .comment-form h3 {
            color: var(--secondary);
            margin-bottom: 20px;
        }
        .stars {
            display: flex;
            gap: 5px;
            margin: 15px 0;
        }
        .star {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: var(--accent);
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
        }
        input, textarea, select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ccc;
            border-radius: var(--radius);
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 14px 30px;
            border-radius: var(--radius);
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .submit-btn:hover {
            background-color: #e05a2b;
            transform: translateY(-2px);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin: 40px 0;
        }
        .web-link {
            background-color: white;
            padding: 15px;
            border-radius: var(--radius);
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            border-left: 3px solid var(--primary);
        }
        .web-link a {
            color: var(--secondary);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }
        .web-link a:hover {
            color: var(--primary);
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 50px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: var(--accent);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links a {
            display: block;
            color: #ccc;
            text-decoration: none;
            margin-bottom: 10px;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input {
                border-radius: var(--radius);
                margin-bottom: 10px;
            }
            .search-btn {
                border-radius: var(--radius);
                padding: 15px;
            }
            main, aside {
                padding: 25px;
            }
            .content-wrapper {
                gap: 25px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            .hero {
                padding: 40px 15px;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.6s ease forwards;
        }
