        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #6a11cb;
            --secondary: #2575fc;
            --accent: #ff6b6b;
            --dark: #2d3436;
            --light: #f8f9fa;
            --gray: #636e72;
            --success: #00b894;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #fff;
            color: var(--dark);
            line-height: 1.7;
            overflow-x: hidden;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
        }
        .logo i {
            margin-right: 10px;
            color: var(--accent);
        }
        .search-form {
            flex-grow: 1;
            max-width: 400px;
            margin: 0 30px;
            position: relative;
        }
        .search-form input {
            width: 100%;
            padding: 12px 20px;
            border: none;
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.9);
            font-size: 1rem;
            outline: none;
        }
        .search-form button {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--accent);
            color: white;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: #ff5252;
        }
        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        nav {
            background-color: rgba(0, 0, 0, 0.1);
            padding: 10px 0;
        }
        .nav-list {
            display: flex;
            list-style: none;
            justify-content: center;
            flex-wrap: wrap;
        }
        .nav-list li {
            margin: 0 15px;
        }
        .nav-list a {
            color: white;
            font-weight: 600;
            padding: 8px 0;
            display: block;
            position: relative;
        }
        .nav-list a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: var(--transition);
        }
        .nav-list a:hover::after {
            width: 100%;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #f1f3f4;
            font-size: 0.9rem;
            color: var(--gray);
        }
        .breadcrumb a {
            color: var(--gray);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        main {
            flex: 1;
            padding: 40px 0;
        }
        article {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: var(--shadow);
            margin-bottom: 40px;
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: var(--primary);
            line-height: 1.2;
            border-bottom: 3px solid var(--secondary);
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2rem;
            margin: 35px 0 20px;
            color: var(--secondary);
            padding-left: 10px;
            border-left: 5px solid var(--accent);
        }
        h3 {
            font-size: 1.5rem;
            margin: 25px 0 15px;
            color: var(--dark);
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary);
            background: #f8f9ff;
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid var(--accent);
        }
        .highlight {
            background: linear-gradient(120deg, #a8edea 0%, #fed6e3 100%);
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            border: 1px dashed var(--primary);
        }
        .img-container {
            margin: 30px auto;
            text-align: center;
            max-width: 800px;
        }
        .img-container img {
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: transform 0.5s ease;
        }
        .img-container img:hover {
            transform: scale(1.02);
        }
        .img-caption {
            font-style: italic;
            color: var(--gray);
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .interactive-box {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: var(--shadow);
            margin: 40px 0;
            border-top: 5px solid var(--success);
        }
        .rating-section, .comment-section {
            margin-top: 30px;
        }
        .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: #ffc107;
        }
        form {
            display: grid;
            gap: 20px;
            margin-top: 20px;
        }
        input, textarea, select {
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            width: 100%;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 2px rgba(106, 17, 203, 0.2);
        }
        button[type="submit"] {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            justify-self: start;
        }
        button[type="submit"]:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(106, 17, 203, 0.3);
        }
        .footer-links {
            background: #2d3436;
            color: white;
            padding: 40px 0 20px;
        }
        .web-link {
            display: inline-block;
            margin: 10px 15px;
            background: rgba(255, 255, 255, 0.1);
            padding: 10px 20px;
            border-radius: 30px;
            transition: var(--transition);
        }
        .web-link:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }
        .web-link a {
            color: white;
            font-weight: 600;
        }
        .links-container {
            text-align: center;
            margin-bottom: 30px;
        }
        footer {
            background: #1a1e1f;
            color: #b2bec3;
            text-align: center;
            padding: 25px 0;
            font-size: 0.9rem;
        }
        .footer-links a:hover {
            color: var(--accent);
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.8rem; }
            .header-top {
                flex-wrap: wrap;
            }
            .search-form {
                order: 3;
                max-width: 100%;
                margin: 15px 0 0 0;
            }
        }
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            nav {
                display: none;
                padding: 0;
            }
            nav.active {
                display: block;
            }
            .nav-list {
                flex-direction: column;
                align-items: center;
            }
            .nav-list li {
                margin: 5px 0;
                width: 100%;
                text-align: center;
            }
            .nav-list a {
                padding: 12px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            article {
                padding: 20px;
            }
        }
