* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #2E8B57; 
            --secondary: #FF9933; 
            --accent: #138808; 
            --dark: #1a1a2e;
            --light: #f8f9fa;
            --gray: #6c757d;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #fefefe;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: var(--primary);
            color: white;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }
        .btn:hover {
            background: var(--accent);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        .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; }
        .py-2 { padding-top: 2rem; padding-bottom: 2rem; }
        .highlight {
            color: var(--secondary);
            font-weight: 700;
        }
        header {
            background: var(--dark);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--secondary);
            letter-spacing: 1px;
        }
        .logo span {
            color: var(--accent);
        }
        nav ul {
            display: flex;
            gap: 2rem;
        }
        nav a {
            font-weight: 600;
            transition: var(--transition);
            padding: 5px 0;
            position: relative;
        }
        nav a:hover {
            color: var(--secondary);
        }
        nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: width 0.3s;
        }
        nav a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--secondary);
        }
        .breadcrumb {
            background: #e9ecef;
            padding: 12px 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child):after {
            content: '›';
            margin: 0 10px;
            color: var(--gray);
        }
        .breadcrumb a:hover {
            color: var(--primary);
            text-decoration: underline;
        }
        .hero {
            background: linear-gradient(rgba(26, 26, 46, 0.9), rgba(46, 139, 87, 0.8)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            color: white;
            padding: 5rem 0;
            text-align: center;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        main {
            padding: 3rem 0;
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
            margin-bottom: 3rem;
        }
        h1, h2, h3 {
            color: var(--dark);
            margin-bottom: 1.2rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid var(--secondary);
            padding-bottom: 10px;
        }
        h2 {
            font-size: 2.2rem;
            color: var(--primary);
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.6rem;
            color: var(--accent);
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--dark);
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .feature-box {
            background: #f1f8e9;
            border-left: 5px solid var(--accent);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .image-container {
            margin: 2.5rem 0;
            text-align: center;
        }
        .image-container img {
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin: 0 auto;
            border: 5px solid var(--primary);
        }
        .caption {
            font-style: italic;
            color: var(--gray);
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .sidebar-widget {
            background: white;
            padding: 1.8rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            margin-bottom: 1.2rem;
            padding-bottom: 8px;
            border-bottom: 2px solid #eee;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 5px;
            font-weight: 600;
        }
        input, textarea, select {
            padding: 12px 15px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.2);
        }
        .stars {
            display: flex;
            gap: 5px;
            direction: rtl; 
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .stars label:hover,
        .stars label:hover ~ label,
        .stars input:checked ~ label {
            color: var(--secondary);
        }
        .comments-list {
            margin-top: 2rem;
        }
        .comment {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 1.5rem;
            border-left: 4px solid var(--primary);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-size: 0.9rem;
            color: var(--gray);
        }
        .comment-author {
            font-weight: bold;
            color: var(--dark);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.2rem;
            margin: 3rem 0;
        }
        .web-link {
            background: #e3f2fd;
            padding: 15px;
            border-radius: 8px;
            transition: var(--transition);
        }
        .web-link:hover {
            background: #bbdefb;
            transform: translateY(-5px);
        }
        .web-link a {
            color: var(--dark);
            font-weight: 500;
        }
        footer {
            background: var(--dark);
            color: white;
            padding: 3rem 0 1.5rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2rem;
        }
        .footer-col h4 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: var(--secondary);
        }
        .footer-col ul li {
            margin-bottom: 10px;
        }
        .footer-col a:hover {
            color: var(--secondary);
            padding-left: 5px;
            transition: var(--transition);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 992px) {
            .hero h1 { font-size: 2.6rem; }
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            nav ul {
                position: fixed;
                top: 70px;
                left: -100%;
                flex-direction: column;
                background: var(--dark);
                width: 100%;
                text-align: center;
                padding: 2rem 0;
                transition: left 0.5s ease;
                box-shadow: var(--shadow);
                z-index: 999;
            }
            nav.active ul {
                left: 0;
            }
            nav ul li {
                margin: 15px 0;
            }
            .hero h1 { font-size: 2.2rem; }
            .hero p { font-size: 1.1rem; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            article { padding: 1.8rem; }
        }
        @media (max-width: 576px) {
            .hero { padding: 3rem 0; }
            .hero h1 { font-size: 1.8rem; }
            .btn { padding: 10px 22px; }
            .web-links { grid-template-columns: 1fr; }
        }
