        * {
            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;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            text-decoration: none;
            color: #007bff;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #0056b3;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        header {
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            color: white;
            padding: 1rem 2rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a:hover {
            text-decoration: none;
            color: #ffcc00;
        }
        .logo i {
            color: #ffcc00;
        }
        .search-box {
            display: flex;
            background: white;
            border-radius: 30px;
            overflow: hidden;
            max-width: 400px;
            width: 100%;
        }
        .search-box input {
            flex: 1;
            padding: 0.75rem 1rem;
            border: none;
            outline: none;
            font-size: 1rem;
        }
        .search-box button {
            background: #ffcc00;
            color: #333;
            border: none;
            padding: 0.75rem 1.5rem;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #e6b800;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 1rem;
        }
        .breadcrumb {
            font-size: 0.9rem;
            color: #ccc;
        }
        .breadcrumb a {
            color: #ffcc00;
        }
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-menu li a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-menu li a:hover {
            color: #ffcc00;
        }
        .nav-menu li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #ffcc00;
            transition: width 0.3s;
        }
        .nav-menu li a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        main {
            flex: 1;
            max-width: 1200px;
            width: 95%;
            margin: 2rem auto;
            padding: 0 1rem;
        }
        .article-header {
            text-align: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 3px solid #007bff;
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: #1e3c72;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 2rem;
            color: #666;
            font-size: 0.9rem;
        }
        .article-meta i {
            color: #007bff;
            margin-right: 5px;
        }
        .content-section {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
            margin-bottom: 2rem;
        }
        h2, h3 {
            color: #2a5298;
            margin-top: 1.5rem;
            margin-bottom: 1rem;
        }
        h2 {
            font-size: 2rem;
            border-left: 5px solid #ffcc00;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.5rem;
            color: #1e3c72;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: #fff3cd;
            padding: 1rem;
            border-left: 4px solid #ffcc00;
            margin: 1.5rem 0;
            border-radius: 5px;
        }
        .emoji {
            font-size: 1.2rem;
            margin-right: 5px;
        }
        .featured-image {
            margin: 2rem auto;
            text-align: center;
        }
        .featured-image img {
            border-radius: 10px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }
        .featured-image img:hover {
            transform: scale(1.02);
        }
        .caption {
            font-style: italic;
            color: #666;
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        .link-box {
            display: inline-block;
            background: #e9f7fe;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            margin: 0.5rem;
            border: 1px dashed #007bff;
        }
        .link-box a {
            color: #0056b3;
            font-weight: 600;
        }
        .interactive-forms {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .form-box {
            background: #f1f8ff;
            padding: 1.5rem;
            border-radius: 10px;
            border: 2px solid #007bff;
        }
        .form-box h3 {
            color: #1e3c72;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .form-box form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-box input, .form-box textarea, .form-box select {
            padding: 0.75rem;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-box input:focus, .form-box textarea:focus, .form-box select:focus {
            border-color: #007bff;
            outline: none;
        }
        .form-box button {
            background: #007bff;
            color: white;
            border: none;
            padding: 0.75rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .form-box button:hover {
            background: #0056b3;
        }
        .star-rating {
            display: flex;
            gap: 5px;
            font-size: 1.5rem;
            color: #ffcc00;
            cursor: pointer;
        }
        .star-rating i:hover {
            transform: scale(1.2);
        }
        .footer-links {
            background: #1e3c72;
            color: white;
            padding: 2rem;
            margin-top: 2rem;
        }
        .footer-links h3 {
            color: #ffcc00;
            margin-bottom: 1.5rem;
            text-align: center;
        }
        .web-link-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: rgba(255,255,255,0.1);
            padding: 1rem;
            border-radius: 8px;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #ffcc00;
            font-weight: 600;
            display: block;
            margin-bottom: 0.5rem;
        }
        .web-link p {
            color: #ccc;
            font-size: 0.9rem;
            text-align: left;
        }
        footer {
            background: #0d1b3e;
            color: white;
            text-align: center;
            padding: 1.5rem;
            font-size: 0.9rem;
        }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .social-icons {
            display: flex;
            gap: 1rem;
            font-size: 1.2rem;
        }
        .social-icons a {
            color: white;
            transition: color 0.3s;
        }
        .social-icons a:hover {
            color: #ffcc00;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                gap: 1rem;
            }
            .search-box {
                max-width: 100%;
            }
            .nav-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #2a5298;
                padding: 1rem;
                border-radius: 10px;
                margin-top: 1rem;
            }
            .nav-menu.active {
                display: flex;
            }
            .hamburger {
                display: block;
                align-self: flex-end;
                margin-top: -3rem;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            .interactive-forms {
                grid-template-columns: 1fr;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .web-link-container {
                grid-template-columns: 1fr;
            }
        }
        @media (min-width: 769px) and (max-width: 1024px) {
            main {
                width: 90%;
            }
            .interactive-forms {
                grid-template-columns: repeat(2, 1fr);
            }
        }
