        * {
            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;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #0056b3;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff6b35;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a2a6c, #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 a {
            font-size: 1.8rem;
            font-weight: bold;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a:hover {
            color: #ffcc00;
        }
        .logo i {
            font-size: 2rem;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .nav-links a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        .breadcrumb {
            padding: 10px 0;
            font-size: 0.9rem;
            color: #ccc;
        }
        .breadcrumb a {
            color: #ffcc00;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        main {
            padding: 30px 0;
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin: 20px auto;
        }
        .article-header {
            text-align: center;
            padding: 30px 20px;
            background: linear-gradient(to right, #f8f9fa, #e9ecef);
            border-radius: 12px;
            margin-bottom: 30px;
        }
        .article-header h1 {
            font-size: 2.5rem;
            color: #1a2a6c;
            margin-bottom: 10px;
        }
        .article-meta {
            color: #666;
            font-size: 0.9rem;
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }
        .article-meta i {
            color: #ff6b35;
        }
        .content-section {
            padding: 20px;
            margin-bottom: 30px;
        }
        h2, h3 {
            color: #2a5298;
            margin: 25px 0 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #ffcc00;
        }
        h2 {
            font-size: 2rem;
        }
        h3 {
            font-size: 1.5rem;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: #fff9e6;
            padding: 15px;
            border-left: 5px solid #ffcc00;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .image-container img {
            max-width: 80%;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .image-caption {
            font-style: italic;
            color: #666;
            margin-top: 10px;
        }
        .interactive-forms {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .form-box {
            background-color: #f8f9fa;
            padding: 25px;
            border-radius: 12px;
            border: 1px solid #ddd;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        .form-box:hover {
            transform: translateY(-5px);
        }
        .form-box h3 {
            color: #ff6b35;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .form-box form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .form-box input, .form-box textarea, .form-box select {
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            width: 100%;
        }
        .form-box button {
            background-color: #2a5298;
            color: white;
            border: none;
            padding: 12px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }
        .form-box button:hover {
            background-color: #ff6b35;
        }
        .rating {
            display: flex;
            gap: 10px;
            justify-content: center;
        }
        .rating input {
            display: none;
        }
        .rating label {
            font-size: 1.5rem;
            color: #ddd;
            cursor: pointer;
        }
        .rating input:checked ~ label,
        .rating label:hover,
        .rating label:hover ~ label {
            color: #ffcc00;
        }
        footer {
            background-color: #1a2a6c;
            color: white;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-section h4 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #ffcc00;
        }
        .friend-link {
            background-color: rgba(255,255,255,0.1);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 15px;
        }
        .friend-link a {
            color: #ffcc00;
            font-weight: bold;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.2);
            font-size: 0.9rem;
            color: #ccc;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #2a5298;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 20px;
                border-radius: 0 0 12px 12px;
                box-shadow: 0 8px 16px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            .interactive-forms {
                grid-template-columns: 1fr;
            }
            .image-container img {
                max-width: 100%;
            }
        }
        .text-bold {
            font-weight: bold;
            color: #1a2a6c;
        }
        .text-center {
            text-align: center;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .mt-30 {
            margin-top: 30px;
        }
