* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Nirmala UI', 'Arial', sans-serif;
        }
        :root {
            --primary: #2a5c82;
            --secondary: #e67e22;
            --accent: #16a085;
            --light: #f8f9fa;
            --dark: #2c3e50;
            --gray: #7f8c8d;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary), #1a365f);
            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;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--secondary);
        }
        .logo span {
            color: var(--secondary);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            transition: var(--transition);
            padding: 5px 0;
            position: relative;
        }
        nav a:hover {
            color: var(--secondary);
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary);
            transition: var(--transition);
        }
        nav a:hover::after {
            width: 100%;
        }
        .search-box {
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            background: white;
            width: 300px;
        }
        .search-box input {
            flex: 1;
            border: none;
            padding: 12px 20px;
            font-size: 1rem;
            outline: none;
        }
        .search-box button {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 0 25px;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: #d35400;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 12px 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 10px;
            color: #ccc;
        }
        .breadcrumb a {
            color: #e0e0e0;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: white;
            text-decoration: underline;
        }
        main {
            padding: 40px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .content-area {
            background: white;
            border-radius: 12px;
            padding: 35px;
            box-shadow: var(--shadow);
        }
        article h1 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 20px;
            line-height: 1.3;
            border-bottom: 3px solid var(--secondary);
            padding-bottom: 15px;
        }
        .meta-info {
            display: flex;
            gap: 20px;
            color: var(--gray);
            font-size: 0.95rem;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        .meta-info i {
            margin-right: 5px;
        }
        article h2 {
            font-size: 1.8rem;
            color: var(--primary);
            margin: 30px 0 15px;
            padding-bottom: 8px;
            border-bottom: 1px dashed #ddd;
        }
        article h3 {
            font-size: 1.5rem;
            color: var(--dark);
            margin: 25px 0 12px;
        }
        article p {
            margin-bottom: 18px;
            font-size: 1.1rem;
            text-align: justify;
        }
        article strong {
            color: var(--primary);
            font-weight: 700;
        }
        .highlight-box {
            background: linear-gradient(to right, #e3f2fd, #f3e5f5);
            border-left: 5px solid var(--accent);
            padding: 22px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .highlight-box p {
            margin: 0;
            font-size: 1.15rem;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .featured-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
            border: 1px solid #ddd;
        }
        figcaption {
            font-style: italic;
            color: var(--gray);
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .sidebar-widget {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--primary);
            margin-bottom: 18px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary);
            font-size: 1.4rem;
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 6px;
            font-weight: 600;
            color: var(--dark);
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 12px 15px;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: var(--accent);
            outline: none;
            box-shadow: 0 0 0 3px rgba(22, 160, 133, 0.2);
        }
        .btn {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 14px 25px;
            border-radius: 6px;
            font-weight: 700;
            font-size: 1.05rem;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            text-decoration: none;
            display: inline-block;
        }
        .btn:hover {
            background: #d35400;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(230, 126, 34, 0.3);
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #ffd700;
            cursor: pointer;
            margin-bottom: 10px;
        }
        .stars i {
            transition: var(--transition);
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .footer-links {
            background: var(--dark);
            padding: 40px 0 25px;
            margin-top: 40px;
        }
        .footer-links .container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 18px;
            border-radius: 8px;
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(5px);
        }
        .web-link a {
            color: #ddd;
            text-decoration: none;
            font-size: 1.05rem;
            display: block;
        }
        .web-link a:hover {
            color: white;
            text-decoration: underline;
        }
        footer {
            background: #1a252f;
            color: #bdc3c7;
            padding: 30px 0;
            text-align: center;
        }
        .copyright {
            font-size: 0.95rem;
            line-height: 1.6;
        }
        .copyright a {
            color: var(--secondary);
            text-decoration: none;
        }
        .copyright a:hover {
            text-decoration: underline;
        }
        @media (max-width: 1024px) {
            main {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .sidebar {
                order: -1;
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            nav {
                display: none;
                width: 100%;
                order: 3;
                margin-top: 20px;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                gap: 15px;
            }
            .search-box {
                width: 100%;
                margin-top: 15px;
                order: 2;
            }
            .hamburger {
                display: block;
            }
            article h1 {
                font-size: 2rem;
            }
            .meta-info {
                flex-direction: column;
                gap: 10px;
            }
            .footer-links .container {
                grid-template-columns: 1fr;
            }
        }
        @media print {
            header, .sidebar, .footer-links, footer {
                display: none;
            }
            main {
                padding: 0;
            }
            .content-area {
                box-shadow: none;
                padding: 20px;
            }
        }
