        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            color: #333;
            line-height: 1.8;
            font-size: 1.1rem;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            text-decoration: none;
            color: #2c3e50;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #e74c3c;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: #2c3e50;
            color: white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: #f39c12;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .logo span {
            color: #ecf0f1;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            color: #ecf0f1;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .desktop-nav a:hover {
            background: rgba(255,255,255,0.1);
            color: #f39c12;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background: #34495e;
            padding: 20px;
            flex-direction: column;
            gap: 15px;
            border-top: 1px solid #4a6572;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: #ecf0f1;
            padding: 12px;
            border-bottom: 1px solid #4a6572;
        }
        .breadcrumb {
            background: #ecf0f1;
            padding: 12px 0;
            font-size: 0.95rem;
            color: #7f8c8d;
        }
        .breadcrumb a {
            color: #3498db;
        }
        main {
            flex: 1;
            padding: 40px 0;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        h1 {
            color: #2c3e50;
            font-size: 2.8rem;
            margin-bottom: 25px;
            line-height: 1.3;
            border-bottom: 4px solid #f39c12;
            padding-bottom: 15px;
        }
        h2 {
            color: #2980b9;
            font-size: 2rem;
            margin: 35px 0 20px;
            padding-left: 15px;
            border-left: 6px solid #3498db;
        }
        h3 {
            color: #16a085;
            font-size: 1.6rem;
            margin: 25px 0 15px;
        }
        p {
            margin-bottom: 22px;
            text-align: justify;
        }
        strong {
            color: #c0392b;
            font-weight: 700;
        }
        em {
            color: #8e44ad;
            font-style: italic;
        }
        .highlight-box {
            background: linear-gradient(to right, #e3f2fd, #f3e5f5);
            border-left: 6px solid #9b59b6;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .featured-image {
            width: 80%;
            margin: 35px auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 25px rgba(0,0,0,0.1);
            border: 5px solid #f1c40f;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.06);
        }
        .widget h3 {
            font-size: 1.4rem;
            color: #2c3e50;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f39c12;
        }
        .search-form input {
            width: 100%;
            padding: 14px;
            border: 2px solid #bdc3c7;
            border-radius: 8px;
            font-size: 1rem;
            margin-bottom: 12px;
        }
        .search-form button {
            width: 100%;
            background: linear-gradient(to right, #3498db, #2980b9);
            color: white;
            border: none;
            padding: 14px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        .search-form button:hover {
            background: linear-gradient(to right, #2980b9, #1f639b);
            transform: translateY(-3px);
            box-shadow: 0 7px 12px rgba(41, 128, 185, 0.3);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 2rem;
            color: #f1c40f;
            margin: 10px 0;
        }
        .stars i {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        textarea, .comment-form input {
            width: 100%;
            padding: 15px;
            border: 2px solid #bdc3c7;
            border-radius: 8px;
            font-size: 1rem;
            resize: vertical;
        }
        .comment-form button, .rating-form button {
            background: linear-gradient(to right, #27ae60, #229954);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        .comment-form button:hover, .rating-form button:hover {
            background: linear-gradient(to right, #229954, #1e8449);
            transform: translateY(-3px);
        }
        .web-links-section {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 3px dashed #3498db;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 25px;
        }
        .web-link {
            background: #f8f9fa;
            padding: 18px;
            border-radius: 10px;
            border-left: 5px solid #e74c3c;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: #eaf2f8;
            transform: translateX(10px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.1);
        }
        .web-link a {
            color: #2c3e50;
            font-weight: 600;
            display: block;
            font-size: 1.05rem;
        }
        footer {
            background: #2c3e50;
            color: #ecf0f1;
            padding-top: 40px;
            margin-top: 60px;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid #4a6572;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h4 {
            font-size: 1.4rem;
            color: #f39c12;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f39c12;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section ul li {
            margin-bottom: 12px;
        }
        .footer-section ul li a {
            color: #bdc3c7;
            transition: color 0.3s;
        }
        .footer-section ul li a:hover {
            color: #f39c12;
            padding-left: 8px;
        }
        .copyright {
            text-align: center;
            padding: 25px 0;
            font-size: 1rem;
            color: #95a5a6;
            background: #1a252f;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            .header-top {
                padding: 12px 0;
            }
            .logo {
                font-size: 1.8rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article {
                padding: 25px;
            }
            .content-wrapper {
                gap: 25px;
            }
            .featured-image {
                width: 100%;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            h1 {
                font-size: 1.9rem;
            }
            .footer-content {
                flex-direction: column;
            }
        }
