:root {
            --primary: #4a6fa5;
            --secondary: #ff9e5d;
            --accent: #6bc4a6;
            --light: #f8f9fa;
            --dark: #2c3e50;
            --text: #333333;
            --shadow: rgba(0, 0, 0, 0.1);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--light);
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            text-decoration: none;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: transform 0.3s ease;
        }
        .logo:hover {
            transform: scale(1.05);
        }
        .logo i {
            color: var(--secondary);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 6px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        nav a:hover, nav a.active {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 12px 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
            border-radius: 0 0 8px 8px;
        }
        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .search-box {
            display: flex;
            max-width: 500px;
            margin: 2rem auto;
            background: white;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 15px var(--shadow);
            border: 2px solid var(--accent);
        }
        .search-box input {
            flex: 1;
            border: none;
            padding: 15px 25px;
            font-size: 1rem;
            outline: none;
        }
        .search-box button {
            background: var(--accent);
            color: white;
            border: none;
            padding: 0 30px;
            cursor: pointer;
            transition: background 0.3s ease;
            font-weight: 600;
        }
        .search-box button:hover {
            background: #4aa88f;
        }
        main {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px var(--shadow);
            margin-bottom: 3rem;
        }
        h1 {
            color: var(--dark);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 6px solid var(--secondary);
            padding-left: 20px;
        }
        h2 {
            color: var(--primary);
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 8px;
            border-bottom: 2px dashed var(--accent);
        }
        h3 {
            color: var(--dark);
            margin: 1.8rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }
        .highlight {
            background-color: #fff9e6;
            border-left: 4px solid var(--secondary);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2rem;
            margin-right: 8px;
        }
        .image-container {
            margin: 2.5rem 0;
            text-align: center;
        }
        .article-img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            transition: transform 0.5s ease;
        }
        .article-img:hover {
            transform: scale(1.02);
        }
        .caption {
            font-style: italic;
            color: #666;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .interactive-section {
            background: linear-gradient(to right, #f0f7ff, #e6f7f0);
            padding: 2rem;
            border-radius: 12px;
            margin: 2.5rem 0;
            border: 1px solid #cce7ff;
        }
        .rating-section, .comments-section {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px solid #eee;
        }
        .stars {
            display: flex;
            gap: 5px;
            margin: 1rem 0;
        }
        .star {
            color: #ddd;
            font-size: 1.8rem;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover, .star.active {
            color: #ffc107;
        }
        form {
            display: grid;
            gap: 1.2rem;
            margin-top: 1.5rem;
        }
        input, textarea, select {
            padding: 14px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            width: 100%;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            border-color: var(--accent);
            outline: none;
            box-shadow: 0 0 0 3px rgba(107, 196, 166, 0.2);
        }
        button[type="submit"] {
            background: var(--primary);
            color: white;
            border: none;
            padding: 16px;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }
        button[type="submit"]:hover {
            background: var(--dark);
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(44, 62, 80, 0.2);
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.2rem;
            margin: 3rem 0;
        }
        .web-link {
            background: white;
            padding: 1.2rem;
            border-radius: 8px;
            border-left: 4px solid var(--primary);
            box-shadow: 0 4px 10px var(--shadow);
            transition: transform 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            border-left-color: var(--secondary);
        }
        .web-link a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 600;
            display: block;
            line-height: 1.5;
        }
        .web-link a:hover {
            color: var(--primary);
            text-decoration: underline;
        }
        footer {
            background: var(--dark);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
        }
        .footer-section h4 {
            color: var(--secondary);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid #4a5f7a;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 {
                font-size: 2.4rem;
            }
            nav ul {
                gap: 1.2rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            nav ul {
                position: fixed;
                top: 80px;
                right: -100%;
                flex-direction: column;
                background: var(--dark);
                width: 280px;
                height: calc(100vh - 80px);
                padding: 2rem;
                transition: right 0.4s ease;
                box-shadow: -5px 0 15px rgba(0,0,0,0.1);
            }
            nav ul.active {
                right: 0;
            }
            .header-container {
                flex-wrap: wrap;
            }
            main {
                padding: 1.5rem;
            }
            .web-links-container {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 2rem;
            }
            .logo {
                font-size: 1.8rem;
            }
            .interactive-section {
                padding: 1.5rem;
            }
        }
