        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
            font-size: 18px;
        }
        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: linear-gradient(135deg, #1a2980, #26d0ce);
            color: white;
            padding: 20px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.5rem;
            font-weight: 900;
            color: white;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
        }
        .logo i {
            margin-right: 10px;
            font-size: 2.8rem;
        }
        .logo a:hover {
            color: #f1c40f;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
        }
        .desktop-nav li {
            margin-left: 30px;
        }
        .desktop-nav a {
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
            padding: 10px 15px;
            border-radius: 5px;
            transition: background 0.3s ease;
        }
        .desktop-nav a:hover {
            background: rgba(255,255,255,0.2);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background: #2c3e50;
            padding: 20px;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            z-index: 1000;
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 15px;
        }
        .mobile-nav a {
            color: white;
            font-size: 1.2rem;
            display: block;
            padding: 10px;
            border-radius: 5px;
        }
        .mobile-nav a:hover {
            background: #34495e;
        }
        .breadcrumb {
            background: #ecf0f1;
            padding: 15px 20px;
            margin-top: 10px;
            border-radius: 5px;
            font-size: 1rem;
        }
        .breadcrumb a {
            color: #3498db;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            padding: 40px 0;
            background: white;
            border-radius: 10px;
            margin-top: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding: 0 20px;
        }
        h1 {
            font-size: 3.5rem;
            color: #1a2980;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .article-meta {
            color: #7f8c8d;
            font-size: 1.1rem;
            margin-bottom: 30px;
        }
        .article-meta i {
            margin-right: 5px;
        }
        .content-section {
            padding: 0 30px;
            margin-bottom: 50px;
        }
        h2 {
            font-size: 2.8rem;
            color: #2c3e50;
            margin: 40px 0 20px;
            border-left: 5px solid #e74c3c;
            padding-left: 15px;
        }
        h3 {
            font-size: 2.2rem;
            color: #3498db;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.2rem;
            text-align: justify;
            line-height: 1.8;
        }
        .highlight {
            background: #fffacd;
            padding: 20px;
            border-left: 4px solid #f1c40f;
            margin: 25px 0;
            border-radius: 5px;
        }
        .highlight p {
            margin-bottom: 0;
            font-weight: bold;
        }
        .emoji {
            font-size: 1.5rem;
            margin-right: 10px;
        }
        b {
            color: #e74c3c;
            font-weight: 800;
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        .image-container img {
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            max-width: 800px;
            margin: 0 auto;
        }
        .image-caption {
            font-style: italic;
            color: #7f8c8d;
            margin-top: 10px;
            font-size: 1rem;
        }
        .interactive-section {
            background: #f8f9fa;
            padding: 40px;
            border-radius: 10px;
            margin: 50px 0;
            border: 2px dashed #bdc3c7;
        }
        .search-box, .comment-form, .rating-form {
            margin-bottom: 40px;
        }
        h4 {
            font-size: 1.8rem;
            color: #2c3e50;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        h4 i {
            margin-right: 10px;
            color: #3498db;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        input, textarea, select {
            padding: 15px;
            border: 2px solid #bdc3c7;
            border-radius: 8px;
            font-size: 1.1rem;
            transition: border 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            border-color: #3498db;
            outline: none;
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        button {
            padding: 15px 30px;
            background: linear-gradient(to right, #1a2980, #26d0ce);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            align-self: flex-start;
        }
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(0,0,0,0.2);
        }
        .stars {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }
        .star {
            font-size: 2.5rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .star:hover,
        .star.active {
            color: #f1c40f;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 60px 0 40px;
            padding: 30px;
            background: #2c3e50;
            border-radius: 10px;
        }
        .web-link {
            background: white;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .web-link a {
            font-size: 1.3rem;
            color: #1a2980;
            font-weight: 600;
        }
        .web-link a:hover {
            color: #e74c3c;
            text-decoration: underline;
        }
        footer {
            background: #1a2980;
            color: white;
            padding: 40px 0;
            text-align: center;
        }
        .copyright {
            margin-top: 30px;
            font-size: 1.1rem;
            color: #bdc3c7;
        }
        .copyright a {
            color: #f1c40f;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                align-items: flex-start;
            }
            .desktop-nav {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 30px;
                right: 20px;
            }
            .logo a {
                font-size: 2rem;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2.2rem;
            }
            h3 {
                font-size: 1.8rem;
            }
            p {
                font-size: 1.1rem;
            }
            .content-section {
                padding: 0 20px;
            }
            .interactive-section {
                padding: 30px 20px;
            }
            .web-links {
                grid-template-columns: 1fr;
                padding: 20px;
            }
        }
        @media (min-width: 769px) {
            .mobile-nav {
                display: none !important;
            }
        }
