        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
            font-size: 18px;
        }
        a {
            text-decoration: none;
            color: #4a6fa5;
        }
        a:hover {
            color: #ff6b6b;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            color: white;
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: bold;
            color: #ffd166;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo span {
            color: #06d6a0;
        }
        .desktop-nav {
            display: flex;
            gap: 25px;
        }
        .desktop-nav a {
            color: white;
            font-size: 1.1rem;
            padding: 8px 15px;
            border-radius: 5px;
            transition: background 0.3s;
        }
        .desktop-nav a:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: #2a5298;
            padding: 15px;
            border-radius: 0 0 10px 10px;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: white;
            padding: 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .mobile-nav a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 10px 0;
            background: #e9ecef;
            font-size: 0.95rem;
            color: #6c757d;
        }
        .breadcrumb a {
            color: #4a6fa5;
        }
        main {
            padding: 30px 0;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin: 20px auto;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }
        .article-section {
            padding: 20px;
        }
        h1, h2, h3 {
            color: #1e3c72;
            margin-bottom: 15px;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            text-align: center;
            border-bottom: 3px solid #06d6a0;
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2rem;
            margin-top: 30px;
            color: #2a5298;
        }
        h3 {
            font-size: 1.6rem;
            color: #4a6fa5;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: #fffacd;
            padding: 15px;
            border-left: 5px solid #ffd166;
            margin: 20px 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .bold-text {
            font-weight: bold;
            color: #d32f2f;
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .image-container img {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            font-style: italic;
            color: #6c757d;
            margin-top: 10px;
        }
        .search-box, .comments-section, .rating-section {
            background: #f1f8ff;
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            border: 1px solid #cfe2ff;
        }
        .search-box form, .comments-section form, .rating-section form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .search-box input, .comments-section textarea, .rating-section select, .comments-section input, .rating-section input {
            padding: 12px;
            border: 1px solid #adb5bd;
            border-radius: 5px;
            font-size: 1rem;
        }
        .search-box button, .comments-section button, .rating-section button {
            background: #4a6fa5;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.3s;
        }
        .search-box button:hover, .comments-section button:hover, .rating-section button:hover {
            background: #2a5298;
        }
        .star-rating {
            display: flex;
            gap: 10px;
            font-size: 1.5rem;
            color: #ffd166;
            cursor: pointer;
        }
        .star-rating span:hover {
            color: #ffb142;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            padding: 30px 0;
            background: #e9ecef;
        }
        .web-link {
            background: white;
            padding: 15px;
            border-radius: 5px;
            border-left: 4px solid #4a6fa5;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        .web-link a {
            color: #333;
            font-weight: 500;
        }
        .web-link a:hover {
            color: #4a6fa5;
        }
        footer {
            background: #1e3c72;
            color: white;
            padding: 30px 0;
            text-align: center;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .copyright {
            font-size: 0.95rem;
            color: #adb5bd;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            p {
                font-size: 1rem;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
            .container {
                padding: 0 15px;
            }
        }
        @media (min-width: 769px) {
            .mobile-nav {
                display: none !important;
            }
        }
