        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #00a65a;
            --primary-dark: #008748;
            --secondary: #ff6b00;
            --dark: #1a1a2e;
            --light: #f8f9fa;
            --gray: #6c757d;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--dark) 0%, #16213e 100%);
            color: white;
            padding: 1.2rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            color: white;
            text-decoration: none;
            font-size: 1.8rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--secondary);
        }
        .logo span {
            color: var(--primary);
        }
        .nav-desktop ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-desktop a {
            color: #ddd;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            padding: 0.5rem 0;
            position: relative;
            transition: var(--transition);
        }
        .nav-desktop a:hover,
        .nav-desktop a.active {
            color: white;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--secondary);
            transition: var(--transition);
        }
        .nav-desktop a:hover::after,
        .nav-desktop a.active::after {
            width: 100%;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            background: var(--dark);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: var(--shadow);
            z-index: 999;
        }
        .nav-mobile.active {
            display: block;
        }
        .nav-mobile ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .nav-mobile a {
            color: #ddd;
            text-decoration: none;
            display: block;
            padding: 0.8rem;
            border-radius: 5px;
            transition: var(--transition);
        }
        .nav-mobile a:hover {
            background: rgba(255, 255, 255, 0.1);
            color: white;
        }
        .breadcrumb {
            background: #e9ecef;
            padding: 0.8rem 0;
            font-size: 0.9rem;
            color: var(--gray);
        }
        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .hero {
            background: linear-gradient(rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.9)), url('https://images.unsplash.com/photo-1635070041078-e363dbe005cb?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 4rem 1rem;
            text-align: center;
            border-radius: 0 0 20px 20px;
            margin-bottom: 3rem;
        }
        .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.9;
        }
        .highlight {
            color: var(--secondary);
            font-weight: 700;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin-bottom: 3rem;
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        h2, h3 {
            color: var(--dark);
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid var(--primary);
            padding-left: 15px;
        }
        h3 {
            font-size: 1.4rem;
            color: var(--primary-dark);
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--dark);
            background: #f0f9ff;
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid var(--primary);
        }
        .stats-box {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: white;
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            text-align: center;
        }
        .stats-box h3 {
            color: white;
            border: none;
            padding: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            display: block;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--gray);
            margin-top: -1.5rem;
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }
        .content-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            border-bottom: 2px dotted var(--primary);
            transition: var(--transition);
        }
        .content-link:hover {
            color: var(--primary-dark);
            border-bottom-style: solid;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.7rem;
        }
        blockquote {
            border-left: 4px solid var(--secondary);
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: var(--dark);
            background: #fffaf0;
            padding: 1.5rem;
            border-radius: 0 10px 10px 0;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            padding: 1.8rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        .widget-title {
            font-size: 1.3rem;
            color: var(--dark);
            margin-bottom: 1.2rem;
            padding-bottom: 0.7rem;
            border-bottom: 2px solid #eee;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .widget-title i {
            color: var(--primary);
        }
        .search-form input {
            width: 100%;
            padding: 0.9rem 1rem;
            border: 2px solid #ddd;
            border-radius: 50px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .search-form input:focus {
            outline: none;
            border-color: var(--primary);
        }
        .search-form button {
            width: 100%;
            background: var(--primary);
            color: white;
            border: none;
            padding: 0.9rem;
            border-radius: 50px;
            font-weight: 600;
            margin-top: 1rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: var(--primary-dark);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.8rem;
            color: #ffc107;
            margin: 1rem 0;
        }
        .stars i {
            cursor: pointer;
            transition: var(--transition);
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .rating-result {
            font-weight: 600;
            color: var(--primary);
            margin-top: 1rem;
        }
        .comment-form textarea {
            width: 100%;
            height: 150px;
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-size: 1rem;
            resize: vertical;
            margin-bottom: 1rem;
            transition: var(--transition);
        }
        .comment-form textarea:focus {
            outline: none;
            border-color: var(--primary);
        }
        .comment-form button {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background: #e55a00;
        }
        .tab-container {
            margin: 2rem 0;
        }
        .tab-buttons {
            display: flex;
            border-bottom: 2px solid #eee;
        }
        .tab-btn {
            padding: 1rem 1.5rem;
            background: none;
            border: none;
            font-weight: 600;
            color: var(--gray);
            cursor: pointer;
            transition: var(--transition);
            border-bottom: 3px solid transparent;
        }
        .tab-btn.active {
            color: var(--primary);
            border-bottom-color: var(--primary);
        }
        .tab-content {
            padding: 1.5rem 0;
            display: none;
        }
        .tab-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        .accordion {
            margin: 2rem 0;
        }
        .accordion-item {
            border: 1px solid #ddd;
            border-radius: 8px;
            margin-bottom: 1rem;
            overflow: hidden;
        }
        .accordion-header {
            padding: 1.2rem;
            background: #f8f9fa;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }
        .accordion-header:hover {
            background: #e9ecef;
        }
        .accordion-header.active {
            background: var(--primary);
            color: white;
        }
        .accordion-content {
            padding: 0 1.2rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }
        .accordion-content.active {
            padding: 1.2rem;
            max-height: 1000px;
        }
        .footer-links {
            background: var(--dark);
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.2rem;
            border-radius: 8px;
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }
        .web-link a {
            color: #ddd;
            text-decoration: none;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .web-link a:hover {
            color: white;
        }
        .web-link i {
            color: var(--primary);
        }
        footer {
            background: #0f0f1e;
            color: #aaa;
            padding: 2rem 0;
            text-align: center;
        }
        .copyright {
            font-size: 0.9rem;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid #333;
        }
        @media (max-width: 992px) {
            .main-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .hero h1 {
                font-size: 2.3rem;
            }
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .nav-toggle {
                display: block;
            }
            .hero {
                padding: 3rem 1rem;
            }
            .hero h1 {
                font-size: 1.9rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            article {
                padding: 1.8rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .tab-buttons {
                flex-direction: column;
            }
            .tab-btn {
                text-align: left;
                border-bottom: 1px solid #eee;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            .hero h1 {
                font-size: 1.7rem;
            }
            .web-links-container {
                grid-template-columns: 1fr;
            }
        }
