        * {
            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.7;
            color: #333;
            background-color: #f8f5f0;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        a {
            color: #d35400;
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: #a52700;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }
        h1, h2, h3, h4 {
            color: #2c3e50;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            line-height: 1.2;
            margin-top: 1.5rem;
            border-bottom: 3px solid #e67e22;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2rem;
            color: #e67e22;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.5rem;
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.25rem;
            font-weight: 300;
            color: #555;
        }
        .container {
            width: 100%;
            padding-right: 15px;
            padding-left: 15px;
            margin-right: auto;
            margin-left: auto;
        }
        .text-center { text-align: center; }
        .bold { font-weight: bold; }
        .highlight {
            background-color: #fffacd;
            padding: 2px 5px;
            border-radius: 3px;
        }
        .site-header {
            padding: 1rem 0;
            background-color: #2c3e50;
            color: white;
            border-bottom: 5px solid #e67e22;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: #f1c40f;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
        }
        .logo-icon {
            color: #e67e22;
            margin-right: 10px;
            font-size: 2.5rem;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 992px) {
            .nav-desktop { display: none; }
        }
        .nav-desktop a {
            color: #ecf0f1;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .nav-desktop a:hover {
            background-color: #e67e22;
            color: white;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        @media (max-width: 992px) {
            .hamburger { display: block; }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #34495e;
            padding: 1rem;
            border-radius: 0 0 8px 8px;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            z-index: 999;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: #ecf0f1;
            padding: 0.8rem;
            border-bottom: 1px solid #4a6278;
        }
        .nav-mobile a:hover {
            background-color: #e67e22;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #7f8c8d;
        }
        .breadcrumb a {
            color: #7f8c8d;
        }
        .breadcrumb a:hover {
            color: #e67e22;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .article-image {
            margin: 2rem 0;
            text-align: center;
        }
        .article-image img {
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            border: 5px solid #f1c40f;
        }
        .caption {
            font-style: italic;
            color: #7f8c8d;
            margin-top: 0.5rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background-color: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .sidebar-widget h3 {
            color: #e67e22;
            font-size: 1.3rem;
            margin-top: 0;
            border-bottom: 2px solid #f1c40f;
            padding-bottom: 0.5rem;
        }
        .search-form {
            display: flex;
            margin-top: 1rem;
        }
        .search-input {
            flex: 1;
            padding: 0.8rem;
            border: 2px solid #ddd;
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }
        .search-button {
            background-color: #e67e22;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .search-button:hover {
            background-color: #d35400;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #f1c40f;
            margin: 1rem 0;
        }
        .stars i {
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars i:hover {
            color: #e67e22;
        }
        .rating-form {
            display: none;
            margin-top: 1rem;
        }
        .rating-form.active {
            display: block;
        }
        .rating-submit {
            background-color: #2c3e50;
            color: white;
            border: none;
            padding: 0.6rem 1.2rem;
            border-radius: 4px;
            cursor: pointer;
            margin-top: 0.5rem;
        }
        .comment-form textarea {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #ddd;
            border-radius: 4px;
            font-family: inherit;
            font-size: 1rem;
            margin-bottom: 1rem;
            resize: vertical;
            min-height: 120px;
        }
        .comment-submit {
            background-color: #27ae60;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .comment-submit:hover {
            background-color: #219653;
        }
        .long-tail-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1rem;
            margin: 3rem 0;
        }
        @media (max-width: 768px) {
            .long-tail-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background-color: #ecf0f1;
            padding: 1rem;
            border-radius: 6px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .site-footer {
            background-color: #2c3e50;
            color: #ecf0f1;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 5px solid #e67e22;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h4 {
            color: #f1c40f;
            border-bottom: 2px solid #e67e22;
            padding-bottom: 0.5rem;
            margin-bottom: 1.5rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #bdc3c7;
        }
        .footer-links a:hover {
            color: #e67e22;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid #4a6278;
            color: #95a5a6;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .article-content { padding: 1.5rem; }
        }
