* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f9fa;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #0073e6;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #0056b3;
        }
        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: 1.2rem 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;
            letter-spacing: 1px;
        }
        .logo a {
            color: #ffcc00;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .logo a:hover {
            color: #ffdd44;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        .nav-desktop a:hover {
            background-color: rgba(255,255,255,0.15);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #1e3c72;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: white;
            padding: 0.8rem 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .nav-mobile a:hover {
            background-color: rgba(255,255,255,0.1);
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 0.8rem 20px;
            font-size: 0.95rem;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            color: #0073e6;
        }
        .breadcrumb span {
            color: #777;
            margin: 0 5px;
        }
        main {
            padding: 2rem 0;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 2rem;
        }
        .article-container {
            padding: 0 2rem;
        }
        @media (max-width: 768px) {
            .article-container {
                padding: 0 1rem;
            }
        }
        h1 {
            font-size: 2.8rem;
            color: #1e3c72;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid #ffcc00;
            padding-bottom: 0.5rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
        }
        h2 {
            font-size: 2rem;
            color: #2a5298;
            margin: 2.5rem 0 1rem;
            padding-left: 0.5rem;
            border-left: 5px solid #ffcc00;
        }
        h3 {
            font-size: 1.6rem;
            color: #444;
            margin: 1.8rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
            color: #444;
        }
        .highlight {
            background-color: #fffacd;
            padding: 1rem;
            border-left: 4px solid #ffcc00;
            margin: 1.5rem 0;
            font-weight: 600;
        }
        .bold {
            font-weight: 800;
            color: #1e3c72;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .article-image {
            margin: 2.5rem auto;
            text-align: center;
            max-width: 800px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        }
        .article-image img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .article-image img:hover {
            transform: scale(1.03);
        }
        .article-image figcaption {
            font-style: italic;
            color: #666;
            padding: 0.8rem;
            background-color: #f8f9fa;
        }
        .interactive-section {
            background: #f1f8ff;
            padding: 2rem;
            border-radius: 10px;
            margin: 3rem 0;
            border: 1px solid #cce5ff;
        }
        .interactive-section h3 {
            color: #0056b3;
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #333;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            border-color: #0073e6;
            outline: none;
            box-shadow: 0 0 5px rgba(0,115,230,0.3);
        }
        button {
            background: linear-gradient(to right, #0073e6, #0056b3);
            color: white;
            border: none;
            padding: 0.9rem 2rem;
            font-size: 1rem;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
        }
        button:hover {
            background: linear-gradient(to right, #0056b3, #004494);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #ffcc00;
            margin: 0.5rem 0;
        }
        .rating-stars i {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
        }
        .content-links {
            margin: 2rem 0;
            padding: 1.5rem;
            background: #e7f3ff;
            border-radius: 8px;
        }
        .content-links ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }
        .content-links li {
            padding: 0.5rem 0;
        }
        .content-links a {
            color: #1e3c72;
            font-weight: 600;
        }
        .content-links a:hover {
            text-decoration: underline;
        }
        .footer-links {
            background: #2a5298;
            padding: 2.5rem 20px;
            margin-top: 2rem;
        }
        .web-link {
            display: inline-block;
            background: white;
            color: #2a5298;
            padding: 0.8rem 1.5rem;
            margin: 0.5rem;
            border-radius: 30px;
            font-weight: 600;
            box-shadow: 0 3px 6px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: #ffcc00;
            color: #1e3c72;
            transform: translateY(-3px);
        }
        .links-container {
            text-align: center;
        }
        footer {
            background: #1e3c72;
            color: white;
            text-align: center;
            padding: 1.5rem;
            font-size: 0.95rem;
        }
        footer a {
            color: #ffcc00;
        }
        footer a:hover {
            color: #ffdd44;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
        .text-center {
            text-align: center;
        }
        .mb-3 {
            margin-bottom: 3rem;
        }
        .spacer {
            height: 2rem;
        }
