        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }
        a {
            text-decoration: none;
            color: #0056b3;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff6b00;
        }
        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-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo a:hover {
            color: #ffcc00;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        nav ul li a {
            color: white;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        nav ul li a:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }
        .breadcrumb {
            padding: 10px 0;
            font-size: 0.9rem;
            background-color: #e9ecef;
            margin-top: 10px;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            color: #ff6b00;
        }
        main {
            padding: 30px 0;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin: 20px auto;
        }
        article {
            padding: 20px;
        }
        h1 {
            font-size: 2.8rem;
            color: #1e3c72;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            color: #2a5298;
            margin-top: 30px;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 3px solid #ffcc00;
        }
        h3 {
            font-size: 1.5rem;
            color: #333;
            margin-top: 25px;
            margin-bottom: 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: #fffacd;
            padding: 15px;
            border-left: 5px solid #ffcc00;
            margin: 20px 0;
            font-weight: bold;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .image-container img {
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            max-width: 800px;
            margin: 0 auto;
        }
        .caption {
            font-style: italic;
            color: #666;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .feature-box {
            background: #f1f8ff;
            padding: 20px;
            border-radius: 10px;
            border: 2px solid #d0e7ff;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        .feature-box h3 {
            color: #0056b3;
        }
        .form-section {
            background-color: #f9f9f9;
            padding: 25px;
            border-radius: 10px;
            margin: 40px 0;
            border: 1px solid #ddd;
        }
        .form-section h2 {
            color: #1e3c72;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            max-width: 600px;
            margin-top: 20px;
        }
        input, textarea, select {
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            border-color: #0056b3;
            outline: none;
        }
        button {
            padding: 12px 25px;
            background: linear-gradient(to right, #1e3c72, #2a5298);
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: bold;
            transition: background 0.3s ease, transform 0.2s ease;
        }
        button:hover {
            background: linear-gradient(to right, #ff6b00, #ff8c00);
            transform: scale(1.03);
        }
        .rating {
            display: flex;
            gap: 10px;
            align-items: center;
        }
        .rating input[type="radio"] {
            display: none;
        }
        .rating label {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .rating input[type="radio"]:checked ~ label,
        .rating label:hover,
        .rating label:hover ~ label {
            color: #ffcc00;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 15px;
            padding: 30px 0;
            background-color: #1e3c72;
            color: white;
        }
        .web-link {
            padding: 10px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            text-align: center;
        }
        .web-link a {
            color: #ffcc00;
            font-weight: 600;
        }
        .web-link a:hover {
            color: white;
            text-decoration: underline;
        }
        footer {
            background-color: #0d1b3e;
            color: white;
            padding: 25px 0;
            text-align: center;
        }
        footer p {
            margin-bottom: 10px;
            font-size: 1rem;
        }
        .social-icons {
            margin-top: 15px;
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        .social-icons a {
            color: white;
            font-size: 1.5rem;
            transition: color 0.3s ease, transform 0.3s ease;
        }
        .social-icons a:hover {
            color: #ffcc00;
            transform: scale(1.2);
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #2a5298;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 20px;
                z-index: 999;
            }
            nav ul.active {
                display: flex;
            }
            nav ul li {
                margin-bottom: 15px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .features {
                grid-template-columns: 1fr;
            }
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
            .form-section form {
                width: 100%;
            }
        }
        @media (max-width: 480px) {
            .web-links {
                grid-template-columns: 1fr;
            }
            .logo a {
                font-size: 1.5rem;
            }
        }
