        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #2a4365;
            --secondary: #d69e2e;
            --accent: #9c4221;
            --light: #f7fafc;
            --dark: #1a202c;
            --gray: #718096;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.7;
            font-size: 1.05rem;
        }
        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;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0,0,0,0);
            border: 0;
        }
        .site-header {
            background: linear-gradient(135deg, var(--primary) 0%, #1a365d 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            color: white;
            font-size: 1.8rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--secondary);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a:hover {
            color: var(--secondary);
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--secondary);
            transition: var(--transition);
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: #edf2f7;
            padding: 0.8rem 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin: 0 10px;
            color: var(--gray);
        }
        .breadcrumb a {
            color: var(--primary);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .hero {
            background: linear-gradient(rgba(42, 67, 101, 0.9), rgba(26, 32, 44, 0.9)), url('https://images.unsplash.com/photo-1534447677768-be436bb09401?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            color: white;
            text-align: center;
            padding: 4rem 2rem;
            border-radius: 10px;
            margin: 2rem auto;
            box-shadow: var(--shadow);
        }
        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            opacity: 0.95;
        }
        .cta-button {
            display: inline-block;
            background: var(--secondary);
            color: var(--dark);
            padding: 0.9rem 2rem;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            box-shadow: 0 4px 15px rgba(214, 158, 46, 0.4);
        }
        .cta-button:hover {
            background: #e6b327;
            transform: translateY(-3px);
            color: var(--dark);
        }
        .content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 3rem 0;
        }
        @media (max-width: 992px) {
            .content-area {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: var(--shadow);
        }
        article h2, article h3 {
            color: var(--primary);
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e2e8f0;
        }
        article h2 {
            font-size: 2rem;
        }
        article h3 {
            font-size: 1.5rem;
        }
        article p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        article emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .highlight {
            background-color: #fff3cd;
            border-left: 5px solid var(--secondary);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .feature-img {
            width: 100%;
            border-radius: 10px;
            margin: 2rem auto;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            padding: 1.8rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--primary);
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 0.8rem;
            border: 1px solid #cbd5e0;
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
        }
        .search-form button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 1.2rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
        }
        .search-form button:hover {
            background: #1a365d;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            gap: 5px;
            font-size: 1.8rem;
            color: #e2e8f0;
            cursor: pointer;
        }
        .stars .active {
            color: #f6ad55;
        }
        .rating-widget input, .rating-widget textarea, .comment-form input, .comment-form textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #cbd5e0;
            border-radius: 5px;
            font-size: 1rem;
        }
        .rating-widget button, .comment-form button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0.8rem;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-widget button:hover, .comment-form button:hover {
            background: #1a365d;
        }
        .comments-section {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px solid #e2e8f0;
        }
        .comment {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            border-left: 4px solid var(--primary);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.8rem;
            font-size: 0.9rem;
            color: var(--gray);
        }
        .footer-links {
            background: #2d3748;
            padding: 3rem 0;
            margin-top: 4rem;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: #4a5568;
            padding: 1.2rem;
            border-radius: 8px;
            transition: var(--transition);
        }
        .web-link:hover {
            background: #5a6578;
            transform: translateY(-5px);
        }
        .web-link a {
            color: #e2e8f0;
            display: block;
            font-weight: 500;
        }
        .web-link a:hover {
            color: white;
            text-decoration: underline;
        }
        .site-footer {
            background: var(--dark);
            color: #cbd5e0;
            padding: 3rem 0 2rem;
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }
        .copyright {
            border-top: 1px solid #4a5568;
            padding-top: 2rem;
            width: 100%;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .main-nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
            }
            .main-nav.active {
                max-height: 300px;
                margin-top: 1rem;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 1rem;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .content-area, .web-links {
                grid-template-columns: 1fr;
            }
            article {
                padding: 1.5rem;
            }
        }
