        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f8f5f0;
            color: #333;
            line-height: 1.7;
            font-size: 1.1rem;
        }
        a {
            color: #c62828;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #8e0000;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section, footer, header {
            padding: 40px 0;
        }
        .site-header {
            background: linear-gradient(135deg, #8e0000 0%, #c62828 100%);
            color: white;
            padding: 15px 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;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: white;
        }
        .logo span {
            color: #ffeb3b;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            color: white;
            font-weight: 600;
            padding: 8px 0;
            position: relative;
        }
        .desktop-nav a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: #ffeb3b;
            left: 0;
            bottom: 0;
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover:after {
            width: 100%;
        }
        .mobile-nav-toggle {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #8e0000;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin: 15px 0;
        }
        .mobile-nav a {
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
        }
        .breadcrumb {
            background-color: #e8e0d8;
            padding: 15px 0;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #5d4037;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .separator {
            margin: 0 8px;
            color: #8e0000;
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding: 30px;
            background: linear-gradient(to right, #ffffff, #fce4ec);
            border-radius: 15px;
            border-left: 8px solid #c62828;
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: #8e0000;
            margin-bottom: 15px;
            line-height: 1.2;
        }
        .article-meta {
            color: #666;
            font-style: italic;
            font-size: 1rem;
        }
        .article-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .article-content {
                grid-template-columns: 1fr;
            }
        }
        .main-content {
            background-color: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        .sidebar {
            background-color: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 100px;
        }
        .content-section {
            margin-bottom: 50px;
        }
        h2 {
            font-size: 2rem;
            color: #5d4037;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #ffccbc;
        }
        h3 {
            font-size: 1.6rem;
            color: #8e0000;
            margin: 25px 0 15px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .highlight {
            background-color: #ffebee;
            border-left: 5px solid #c62828;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .feature-img {
            margin: 30px auto;
            max-width: 800px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transition: transform 0.5s ease;
        }
        .feature-img:hover {
            transform: scale(1.02);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: linear-gradient(145deg, #f5f5f5, #ffffff);
            border-radius: 10px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
            border-top: 5px solid #c62828;
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            color: #8e0000;
            display: block;
        }
        .quote {
            font-size: 1.3rem;
            color: #5d4037;
            text-align: center;
            padding: 30px;
            margin: 40px 0;
            background-color: #f5f0e6;
            border-radius: 12px;
            position: relative;
        }
        .quote:before, .quote:after {
            font-size: 3rem;
            color: #c62828;
            opacity: 0.3;
            position: absolute;
        }
        .quote:before {
            content: "“";
            top: 10px;
            left: 20px;
        }
        .quote:after {
            content: "”";
            bottom: 10px;
            right: 20px;
        }
        .author {
            display: block;
            margin-top: 15px;
            font-weight: 600;
            color: #8e0000;
        }
        .widget {
            margin-bottom: 30px;
            padding-bottom: 25px;
            border-bottom: 1px dashed #ddd;
        }
        .widget:last-of-type {
            border-bottom: none;
        }
        .widget-title {
            font-size: 1.3rem;
            color: #5d4037;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-box {
            display: flex;
        }
        .search-box input {
            flex-grow: 1;
            padding: 12px 15px;
            border: 2px solid #c62828;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-box button {
            background-color: #c62828;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.3s ease;
        }
        .search-box button:hover {
            background-color: #8e0000;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin: 15px 0;
        }
        .star {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ff9800;
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            resize: vertical;
            min-height: 120px;
            margin-bottom: 15px;
        }
        .comment-form button {
            background-color: #5d4037;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s ease;
        }
        .comment-form button:hover {
            background-color: #3e2723;
        }
        .web-links-section {
            background-color: #5d4037;
            color: #f5f0e6;
            padding: 40px 0;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background-color: rgba(255, 255, 255, 0.08);
            padding: 18px;
            border-radius: 8px;
            border-left: 4px solid #ffccbc;
            transition: transform 0.3s ease, background 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background-color: rgba(255, 255, 255, 0.15);
        }
        .site-footer {
            background-color: #3e2723;
            color: #d7ccc8;
            text-align: center;
            padding: 30px 0;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
            margin-bottom: 25px;
        }
        .footer-links a {
            color: #ffccbc;
        }
        .copyright {
            font-size: 0.9rem;
            color: #bcaaa4;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-nav-toggle {
                display: block;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            .main-content, .sidebar {
                padding: 25px;
            }
            .footer-links {
                flex-direction: column;
                gap: 15px;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
        }
