        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            color: #2a6e3f;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #1e4d2c;
        }
        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-color: #e8f5e9;
            padding: 2px 5px;
            border-radius: 3px;
        }
        .section-padding {
            padding: 60px 0;
        }
        .py-1 { padding-top: 10px; padding-bottom: 10px; }
        .py-2 { padding-top: 20px; padding-bottom: 20px; }
        .mb-1 { margin-bottom: 10px; }
        .mb-2 { margin-bottom: 20px; }
        .mb-3 { margin-bottom: 30px; }
        header {
            background-color: #1a472a;
            color: white;
            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;
            padding: 15px 20px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #4caf50;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            color: #81c784;
        }
        .my-logo span {
            color: #ffd54f;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 25px;
        }
        .nav-links a {
            color: white;
            font-weight: 500;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            border-bottom-color: #4caf50;
        }
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: white;
        }
        .breadcrumb {
            background-color: #e8f5e9;
            padding: 10px 20px;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #2a6e3f;
        }
        .breadcrumb a:not(:last-child)::after {
            content: '>';
            margin: 0 8px;
            color: #888;
        }
        .hero {
            background: linear-gradient(rgba(26, 71, 42, 0.85), rgba(26, 71, 42, 0.9)), url('https://images.unsplash.com/photo-1518717758536-85ae29035b6d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            color: white;
            padding: 100px 20px;
            text-align: center;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        main {
            background-color: white;
            padding: 40px 20px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin: -50px auto 40px;
            position: relative;
            max-width: 1100px;
        }
        article h2 {
            color: #1a472a;
            border-left: 5px solid #4caf50;
            padding-left: 15px;
            margin: 40px 0 20px;
        }
        article h3 {
            color: #2a6e3f;
            margin: 30px 0 15px;
            padding-bottom: 5px;
            border-bottom: 1px dashed #c8e6c9;
        }
        article h4 {
            color: #388e3c;
            margin: 25px 0 10px;
        }
        article p {
            margin-bottom: 1.5em;
            text-align: justify;
            line-height: 1.8;
        }
        article ul, article ol {
            margin-left: 30px;
            margin-bottom: 1.5em;
        }
        blockquote {
            border-left: 4px solid #4caf50;
            padding-left: 20px;
            margin: 30px 0;
            font-style: italic;
            color: #555;
            background-color: #f1f8e9;
            padding: 20px;
            border-radius: 0 8px 8px 0;
        }
        .featured-image {
            width: 80%;
            margin: 30px auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            padding: 10px;
            color: #666;
            background-color: #f5f5f5;
        }
        .interactive-module {
            background-color: #f1f8e9;
            border: 1px solid #c8e6c9;
            border-radius: 10px;
            padding: 30px;
            margin: 40px 0;
        }
        .module-title {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #1a472a;
            margin-bottom: 20px;
        }
        .module-title i {
            font-size: 1.5rem;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }
        .search-form input, .comment-form input, .comment-form textarea, .rating-form select {
            flex: 1 1 300px;
            padding: 12px 15px;
            border: 1px solid #a5d6a7;
            border-radius: 5px;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        button {
            background-color: #2a6e3f;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s ease;
        }
        button:hover {
            background-color: #1e4d2c;
        }
        .stars {
            display: flex;
            gap: 5px;
            margin: 15px 0;
        }
        .star {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffd54f;
        }
        .rating-display {
            font-size: 1.2rem;
            margin-left: 15px;
            color: #2a6e3f;
        }
        .related-links {
            background-color: #e8f5e9;
            padding: 25px;
            border-radius: 8px;
            margin: 40px 0;
        }
        .related-links h3 {
            color: #1a472a;
            margin-bottom: 15px;
        }
        .related-links ul {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 10px;
            list-style-type: none;
            margin-left: 0;
        }
        .related-links li {
            padding: 8px 0;
            border-bottom: 1px dotted #a5d6a7;
        }
        .related-links li:last-child {
            border-bottom: none;
        }
        footer {
            background-color: #1a472a;
            color: #e8f5e9;
            padding: 50px 20px 30px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            color: #4caf50;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #c8e6c9;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
            transition: all 0.3s;
        }
        friend-link {
            display: inline-block;
            background-color: #2a6e3f;
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            margin-right: 10px;
            margin-bottom: 10px;
            font-size: 0.9rem;
        }
        friend-link a {
            color: white;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #2a6e3f;
            font-size: 0.9rem;
            color: #a5d6a7;
        }
        @media (max-width: 992px) {
            .hero h1 { font-size: 2.5rem; }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #1a472a;
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 10px 0;
                margin-left: 0;
            }
            .hamburger {
                display: block;
            }
            .related-links ul {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .hero { padding: 70px 20px; }
            .hero h1 { font-size: 2rem; }
            .hero p { font-size: 1rem; }
            main { padding: 25px 15px; margin: -30px auto 30px; }
            .interactive-module { padding: 20px; }
            .search-form, .comment-form, .rating-form {
                flex-direction: column;
            }
            .search-form input, .comment-form input, .comment-form textarea, .rating-form select {
                flex: 1 1 auto;
            }
        }
