        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #2E7D32;
            --secondary: #FF9800;
            --accent: #4CAF50;
            --light: #F1F8E9;
            --dark: #1B5E20;
            --text: #333333;
            --gray: #757575;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            line-height: 1.7;
            color: var(--text);
            background-color: #ffffff;
            font-size: 18px;
        }
        h1, h2, h3, h4 {
            color: var(--dark);
            margin-bottom: 1.2rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            border-left: 6px solid var(--secondary);
            padding-left: 1.5rem;
            margin-top: 2rem;
            margin-bottom: 2.5rem;
        }
        h2 {
            font-size: 2.2rem;
            padding-bottom: 0.8rem;
            border-bottom: 3px solid var(--primary);
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-top: 2.5rem;
        }
        p {
            margin-bottom: 1.8rem;
            text-align: justify;
            hyphens: auto;
        }
        strong {
            color: var(--dark);
            font-weight: 700;
        }
        em {
            color: var(--gray);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 0;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--secondary);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }
        .desktop-nav a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
            transition: var(--transition);
        }
        .desktop-nav a:hover {
            color: var(--secondary);
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--secondary);
            transition: var(--transition);
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--primary);
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: white;
            box-shadow: var(--shadow);
            padding: 1.5rem;
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 1.2rem;
        }
        .mobile-nav a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            font-size: 1.2rem;
            display: block;
            padding: 0.8rem;
            border-radius: 8px;
            transition: var(--transition);
        }
        .mobile-nav a:hover {
            background-color: var(--light);
            color: var(--primary);
        }
        .breadcrumb {
            background-color: var(--light);
            padding: 1.2rem 0;
            margin-bottom: 2.5rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
        }
        .breadcrumb a {
            text-decoration: none;
            color: var(--primary);
            transition: var(--transition);
        }
        .breadcrumb a:hover {
            color: var(--secondary);
            text-decoration: underline;
        }
        .breadcrumb .separator {
            margin: 0 10px;
            color: var(--gray);
        }
        .breadcrumb .current {
            color: var(--gray);
            font-weight: 600;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 3rem;
            margin: 3rem 0;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .search-section {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            padding: 2.5rem;
            border-radius: 16px;
            margin-bottom: 3rem;
            color: white;
            text-align: center;
        }
        .search-section h2 {
            color: white;
            border: none;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 2rem auto 0;
        }
        .search-input {
            flex: 1;
            padding: 1.2rem 1.5rem;
            border: none;
            border-radius: 50px 0 0 50px;
            font-size: 1.1rem;
            outline: none;
        }
        .search-button {
            background-color: var(--secondary);
            color: white;
            border: none;
            padding: 0 2.5rem;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-button:hover {
            background-color: #E68900;
        }
        .featured-image {
            margin: 3rem 0;
            text-align: center;
        }
        .featured-image img {
            max-width: 100%;
            height: auto;
            border-radius: 16px;
            box-shadow: var(--shadow);
            transition: transform 0.5s ease;
        }
        .featured-image img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            margin-top: 1rem;
            color: var(--gray);
            font-style: italic;
        }
        .content-block {
            margin-bottom: 3.5rem;
            padding: 2.5rem;
            background-color: white;
            border-radius: 16px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .content-block:hover {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        .download-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .download-card {
            background: linear-gradient(145deg, #ffffff, #f0f0f0);
            border-radius: 16px;
            padding: 2.5rem;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 2px solid transparent;
        }
        .download-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
        }
        .download-icon {
            font-size: 3.5rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }
        .download-button {
            display: inline-block;
            background-color: var(--primary);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            margin-top: 1.5rem;
            transition: var(--transition);
            border: 2px solid var(--primary);
        }
        .download-button:hover {
            background-color: transparent;
            color: var(--primary);
        }
        .sidebar {
            position: sticky;
            top: 120px;
            align-self: start;
        }
        .sidebar-widget {
            background-color: white;
            border-radius: 16px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid var(--light);
        }
        .rating-section {
            background-color: var(--light);
            padding: 2.5rem;
            border-radius: 16px;
            margin: 3rem 0;
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1.5rem 0;
        }
        .star {
            font-size: 2.2rem;
            color: #FFD700;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover {
            transform: scale(1.2);
        }
        .review-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 2rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-input, .form-textarea {
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-input:focus, .form-textarea:focus {
            border-color: var(--primary);
            outline: none;
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 1.2rem 2.5rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            align-self: flex-start;
        }
        .submit-button:hover {
            background-color: var(--dark);
            transform: translateY(-3px);
        }
        .long-tail-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 4rem 0;
            padding: 2.5rem;
            background-color: var(--light);
            border-radius: 16px;
        }
        .web-link {
            background-color: white;
            padding: 1.5rem;
            border-radius: 12px;
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateX(10px);
            box-shadow: var(--shadow);
        }
        .web-link a {
            text-decoration: none;
            color: var(--primary);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .web-link i {
            color: var(--secondary);
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 4rem 0 2rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .footer-section h3 {
            color: white;
            margin-bottom: 1.8rem;
            font-size: 1.5rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 1rem;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 8px;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
                padding-left: 1rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .header-container {
                padding: 1rem 0;
            }
            .desktop-nav {
                display: none;
            }
            .mobile-nav-toggle {
                display: block;
            }
            .content-block {
                padding: 1.8rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input {
                border-radius: 50px;
                margin-bottom: 1rem;
            }
            .search-button {
                border-radius: 50px;
                padding: 1rem;
            }
            .download-cards {
                grid-template-columns: 1fr;
            }
            .long-tail-links {
                grid-template-columns: 1fr;
                padding: 1.5rem;
            }
        }
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .content-block, .download-card, .sidebar-widget {
            animation: fadeIn 0.6s ease-out;
        }
        @media print {
            .mobile-nav-toggle,
            .search-section,
            .sidebar,
            .rating-section,
            .long-tail-links,
            footer {
                display: none !important;
            }
            body {
                font-size: 12pt;
                color: black;
            }
            a {
                color: black;
                text-decoration: underline;
            }
        }
