        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
            max-width: 100%;
            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; }
        .py-1 { padding-top: 1rem; padding-bottom: 1rem; }
        .py-2 { padding-top: 2rem; padding-bottom: 2rem; }
        .my-2 { margin-top: 2rem; margin-bottom: 2rem; }
        .hidden { display: none !important; }
        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0,0,0,0);
            border: 0;
        }
        :root {
            --primary-dark: #0d3b2a;
            --primary: #1a6b4b;
            --primary-light: #2a9d6f;
            --accent: #e9c46a;
            --accent-dark: #d4a729;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --danger: #e63946;
        }
        .site-header {
            background-color: var(--primary-dark);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: Georgia, serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--accent);
            text-decoration: none;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
        }
        .my-logo i { margin-right: 10px; color: white; }
        .my-logo:hover { color: white; text-decoration: none; }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
        }
        .nav-desktop a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem;
            border-radius: 4px;
            transition: background-color 0.3s;
        }
        .nav-desktop a:hover {
            background-color: var(--primary-light);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: var(--primary);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            z-index: 999;
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a {
            color: white;
            text-decoration: none;
            padding: 0.8rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .nav-mobile a:hover { background-color: var(--primary-light); }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 0.8rem 20px;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
        }
        .breadcrumb a:hover { text-decoration: underline; }
        .breadcrumb span { color: var(--gray); }
        main {
            background-color: white;
            padding: 2rem 0;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            margin-bottom: 2rem;
        }
        article { padding: 0 20px; }
        h1 {
            font-size: 2.8rem;
            color: var(--primary-dark);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-align: center;
            border-bottom: 3px solid var(--accent);
            padding-bottom: 1rem;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
        }
        h2 {
            font-size: 2rem;
            color: var(--primary);
            margin-top: 3rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #dee2e6;
        }
        h3 {
            font-size: 1.6rem;
            color: var(--primary-light);
            margin-top: 2rem;
            margin-bottom: 0.8rem;
        }
        h4 {
            font-size: 1.3rem;
            color: var(--dark);
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
            hyphens: auto;
        }
        .lead {
            font-size: 1.2rem;
            color: var(--dark);
            font-weight: 500;
            margin-bottom: 2rem;
        }
        .highlight {
            background-color: rgba(233, 196, 106, 0.2);
            padding: 1.5rem;
            border-left: 4px solid var(--accent-dark);
            margin: 1.5rem 0;
            border-radius: 0 4px 4px 0;
        }
        .note {
            background-color: rgba(26, 107, 75, 0.05);
            padding: 1rem;
            border-radius: 4px;
            margin: 1rem 0;
        }
        .content-link {
            color: var(--primary);
            text-decoration: underline;
            font-weight: 600;
        }
        .content-link:hover {
            color: var(--primary-dark);
            text-decoration: none;
        }
        .article-img {
            margin: 2rem auto;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            max-width: 800px;
        }
        .article-img figcaption {
            text-align: center;
            font-style: italic;
            color: var(--gray);
            padding: 0.5rem;
            background-color: #f8f9fa;
        }
        .feature-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .feature-card {
            background: linear-gradient(to bottom right, #f8f9fa, #e9ecef);
            padding: 2rem;
            border-radius: 8px;
            border-top: 5px solid var(--primary-light);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .feature-card h3 { margin-top: 0; }
        .interactive-section {
            background-color: #f1f8ff;
            padding: 2rem;
            border-radius: 8px;
            margin: 3rem 0;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ced4da;
            border-radius: 4px;
            font-family: inherit;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary-light);
            box-shadow: 0 0 0 3px rgba(26, 107, 75, 0.2);
        }
        .btn {
            display: inline-block;
            padding: 0.8rem 1.8rem;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            text-decoration: none;
            transition: background-color 0.3s, transform 0.2s;
        }
        .btn:hover {
            background-color: var(--primary-dark);
            color: white;
            transform: scale(1.03);
        }
        .btn-accent {
            background-color: var(--accent-dark);
        }
        .btn-accent:hover {
            background-color: #c4961f;
        }
        .search-box {
            background-color: var(--light);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
            text-align: center;
        }
        .search-box form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-box input { flex-grow: 1; border-radius: 4px 0 0 4px; }
        .search-box button { border-radius: 0 4px 4px 0; }
        .comment-box, .rating-box {
            background-color: white;
            border: 1px solid #dee2e6;
            border-radius: 8px;
            padding: 2rem;
            margin-top: 3rem;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #ffc107;
            cursor: pointer;
        }
        .rating-stars i:hover { transform: scale(1.2); }
        .site-footer {
            background-color: var(--dark);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-links h4 {
            color: var(--accent);
            border-bottom: 1px solid var(--gray);
            padding-bottom: 0.5rem;
        }
        .footer-links a {
            color: #adb5bd;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: white;
        }
        friend-link {
            display: block;
            color: var(--accent);
            font-weight: 600;
            margin: 0.5rem 0;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #495057;
            color: #adb5bd;
            font-size: 0.9rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-grid { grid-template-columns: 1fr; }
        }
        .sidebar {
            background-color: #f8f9fa;
            padding: 1.5rem;
            border-radius: 8px;
            align-self: start;
        }
        .sidebar h3 { font-size: 1.4rem; }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
        }
        th, td {
            border: 1px solid #dee2e6;
            padding: 0.8rem;
            text-align: left;
        }
        th {
            background-color: var(--primary);
            color: white;
        }
        tr:nth-child(even) {
            background-color: #f8f9fa;
        }
