        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-green: #2e8b57;
            --secondary-green: #3cb371;
            --accent-gold: #daa520;
            --light-bg: #f9fff9;
            --dark-text: #2f4f4f;
            --light-text: #5f7a7a;
            --border-color: #c1e1c1;
            --shadow: 0 4px 12px rgba(46, 139, 87, 0.1);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--light-bg);
            color: var(--dark-text);
            line-height: 1.7;
            max-width: 100%;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-green);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-gold);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(to right, var(--primary-green), var(--secondary-green));
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow);
            background: linear-gradient(to right, var(--secondary-green), var(--primary-green));
            color: white;
        }
        .section-padding {
            padding: 60px 0;
        }
        .text-center {
            text-align: center;
        }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mb-3 { margin-bottom: 3rem; }
        .mt-2 { margin-top: 2rem; }
        .highlight {
            background-color: #fffacd;
            padding: 2px 6px;
            border-radius: 3px;
            font-weight: bold;
        }
        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: 15px 20px;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -1px;
        }
        .my-logo span {
            color: var(--primary-green);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.05rem;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-gold);
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--primary-green);
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: white;
            padding: 20px;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            z-index: 999;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 15px;
        }
        .mobile-nav a {
            font-size: 1.1rem;
            font-weight: 600;
            display: block;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }
        .breadcrumb {
            padding: 15px 20px;
            background-color: #f0f8f0;
            font-size: 0.95rem;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb a {
            color: var(--light-text);
        }
        .breadcrumb a:hover {
            color: var(--primary-green);
        }
        .breadcrumb span {
            color: var(--light-text);
            margin: 0 8px;
        }
        main {
            background-color: white;
            margin: 20px auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            max-width: 1200px;
        }
        .article-header {
            padding: 40px 20px;
            background: linear-gradient(rgba(46, 139, 87, 0.9), rgba(60, 179, 113, 0.9)), url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
        }
        .article-header h1 {
            font-size: 3.2rem;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .article-header .meta {
            font-style: italic;
            opacity: 0.9;
        }
        .article-content {
            padding: 40px;
        }
        h1 { font-size: 2.8rem; line-height: 1.2; margin-bottom: 1.5rem; color: var(--primary-green); }
        h2 { font-size: 2.2rem; margin: 2.5rem 0 1.2rem; padding-bottom: 10px; border-bottom: 2px solid var(--border-color); color: var(--dark-text); }
        h3 { font-size: 1.8rem; margin: 2rem 0 1rem; color: var(--secondary-green); }
        h4 { font-size: 1.4rem; margin: 1.5rem 0 0.8rem; color: var(--light-text); }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: var(--light-text);
            margin-bottom: 2.5rem;
        }
        .search-box, .comment-form, .rating-form {
            background-color: #f9fff9;
            border: 2px solid var(--border-color);
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
        }
        .search-box h3, .comment-form h3, .rating-form h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 14px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
            outline: none;
            border-color: var(--primary-green);
            box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.2);
        }
        .stars {
            display: flex;
            gap: 10px;
            direction: rtl; 
            justify-content: center;
        }
        .star {
            font-size: 2.5rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star:hover ~ .star {
            color: var(--accent-gold);
        }
        .feature-img {
            margin: 30px auto;
            max-width: 900px;
            box-shadow: var(--shadow);
        }
        .feature-img figcaption {
            text-align: center;
            font-style: italic;
            color: var(--light-text);
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .link-list {
            background: #f0f8f0;
            border-left: 5px solid var(--primary-green);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .link-list h3 {
            margin-top: 0;
        }
        .link-list ul {
            list-style: none;
            columns: 2;
            column-gap: 40px;
        }
        .link-list li {
            margin-bottom: 12px;
            break-inside: avoid;
        }
        .link-list a {
            display: block;
            padding: 8px 12px;
            background: white;
            border-radius: 6px;
            border: 1px solid transparent;
        }
        .link-list a:hover {
            border-color: var(--primary-green);
            background-color: #fff;
            transform: translateX(5px);
        }
        footer {
            background-color: var(--dark-text);
            color: #ddd;
            padding: 50px 0 20px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid #5f7a7a;
        }
        .footer-section h3 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #b0c4c4;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        friend-link {
            display: block;
            margin: 10px 0;
            font-weight: bold;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            color: #b0c4c4;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            .article-header h1 { font-size: 2.8rem; }
            .link-list ul { columns: 1; }
        }
        @media (max-width: 768px) {
            .header-container { padding: 15px; }
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .article-header { padding: 30px 15px; }
            .article-header h1 { font-size: 2.2rem; }
            .article-content { padding: 25px; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            h3 { font-size: 1.5rem; }
            .lead { font-size: 1.2rem; }
            .footer-container { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            .article-header h1 { font-size: 1.8rem; }
            h1 { font-size: 1.7rem; }
            .btn { padding: 10px 20px; }
            .search-box, .comment-form, .rating-form { padding: 20px; }
        }
