        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f8f5f0;
            color: #2c2416;
            line-height: 1.7;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .italic { font-style: italic; }
        .highlight {
            background: linear-gradient(120deg, #fceabb 0%, #f8b500 100%);
            padding: 2px 6px;
            border-radius: 3px;
        }
        .section-spacing {
            padding: 60px 0;
        }
        .content-wrapper {
            max-width: 900px;
            margin: 0 auto;
        }
        .site-header {
            background: linear-gradient(135deg, #1a472a 0%, #2d5a27 100%);
            color: #f8f5f0;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            color: #f8b500;
            font-size: 2.2rem;
            font-weight: 800;
            text-decoration: none;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            font-size: 2.5rem;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
        }
        .nav-desktop a {
            color: #f8f5f0;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 5px;
            position: relative;
            transition: color 0.3s;
        }
        .nav-desktop a:hover {
            color: #f8b500;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #f8b500;
            transition: width 0.3s;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f8f5f0;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
        }
        .nav-mobile {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: #1a472a;
            flex-direction: column;
            padding: 20px;
            box-shadow: 0 10px 15px rgba(0,0,0,0.2);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: #f8f5f0;
            text-decoration: none;
            padding: 15px;
            border-bottom: 1px solid #2d5a27;
            font-weight: 600;
        }
        .nav-mobile a:hover {
            background-color: #2d5a27;
        }
        .breadcrumb {
            background-color: #e9e2d6;
            padding: 12px 0;
            font-size: 0.9rem;
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .breadcrumb a {
            color: #5a4a2a;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #8b7355;
        }
        .hero {
            background: linear-gradient(rgba(26, 71, 42, 0.85), rgba(45, 90, 39, 0.9)), url('https://images.unsplash.com/photo-1612776579905-5c8554b80c7f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: #f8f5f0;
            padding: 80px 20px;
            text-align: center;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        .main-content {
            background-color: #fff;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
            border-radius: 10px;
            margin: -40px auto 40px;
            padding: 50px;
            position: relative;
        }
        @media (max-width: 768px) {
            .main-content { padding: 30px 20px; }
        }
        article h2 {
            color: #1a472a;
            font-size: 2.2rem;
            margin-top: 40px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #f8b500;
        }
        article h3 {
            color: #2d5a27;
            font-size: 1.7rem;
            margin-top: 35px;
            margin-bottom: 15px;
        }
        article p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
        }
        article ul, article ol {
            margin-left: 30px;
            margin-bottom: 25px;
        }
        article li {
            margin-bottom: 10px;
        }
        .featured-image {
            width: 100%;
            margin: 40px auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .featured-image img {
            width: 100%;
            transition: transform 0.5s;
        }
        .featured-image img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            padding: 10px;
            background: #f9f9f9;
        }
        .interactive-module {
            background: #f0f7f0;
            border-left: 5px solid #2d5a27;
            padding: 25px;
            margin: 40px 0;
            border-radius: 0 10px 10px 0;
        }
        .module-title {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #1a472a;
            margin-bottom: 20px;
        }
        .module-title i {
            font-size: 1.5rem;
        }
        form {
            display: grid;
            gap: 20px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        label {
            font-weight: 600;
            margin-bottom: 8px;
            color: #444;
        }
        input, textarea, select {
            padding: 12px 15px;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #2d5a27;
            box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.2);
        }
        button {
            background: linear-gradient(to right, #1a472a, #2d5a27);
            color: white;
            border: none;
            padding: 14px 25px;
            border-radius: 6px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            justify-self: start;
        }
        button:hover {
            background: linear-gradient(to right, #2d5a27, #3a6b32);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(0,0,0,0.1);
        }
        .rating {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #f8b500;
        }
        .longtail-links {
            background: #1a472a;
            padding: 50px 0;
            margin-top: 60px;
        }
        .longtail-links h3 {
            color: #f8b500;
            text-align: center;
            margin-bottom: 30px;
            font-size: 1.8rem;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 20px;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #f8f5f0;
            text-decoration: none;
            font-size: 1.1rem;
            display: block;
        }
        .web-link a:hover {
            color: #f8b500;
            text-decoration: underline;
        }
        .site-footer {
            background: #0d2818;
            color: #c9c0b3;
            padding: 50px 0 20px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #f8b500;
            margin-bottom: 15px;
        }
        .footer-links h4 {
            color: #f8f5f0;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #c9c0b3;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: #f8b500;
        }
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: #2d5a27;
            color: white;
            border-radius: 50%;
            font-size: 1.2rem;
            transition: all 0.3s;
        }
        .social-icons a:hover {
            background: #f8b500;
            transform: scale(1.1);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #2d5a27;
            font-size: 0.95rem;
            color: #8b7355;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: #2d5a27;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 999;
        }
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background: #1a472a;
        }
