* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }
        a {
            text-decoration: none;
            color: #007bff;
        }
        a:hover {
            color: #0056b3;
            text-decoration: underline;
        }
        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);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: white;
            display: flex;
            align-items: center;
        }
        .logo i {
            margin-right: 10px;
            color: #ffcc00;
        }
        .nav-desktop {
            display: flex;
            gap: 25px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: white;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 4px;
            transition: background 0.3s;
        }
        .nav-desktop a:hover {
            background: rgba(255,255,255,0.2);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: #2a5298;
            position: absolute;
            top: 70px;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: white;
            padding: 12px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .nav-mobile a:hover {
            background: rgba(255,255,255,0.1);
        }
        .breadcrumb {
            background: #e9ecef;
            padding: 10px 20px;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        .breadcrumb a {
            color: #6c757d;
        }
        .breadcrumb a:hover {
            color: #007bff;
        }
        main {
            padding: 30px 0;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            margin-bottom: 30px;
        }
        article {
            padding: 0 20px;
        }
        h1 {
            font-size: 2.5rem;
            color: #1e3c72;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
        }
        h2 {
            font-size: 1.8rem;
            color: #2a5298;
            margin: 30px 0 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #ffcc00;
        }
        h3 {
            font-size: 1.4rem;
            color: #444;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: #fff3cd;
            padding: 15px;
            border-left: 4px solid #ffcc00;
            margin: 20px 0;
            border-radius: 4px;
        }
        .emoji {
            font-size: 1.2rem;
            margin-right: 5px;
        }
        .article-img {
            margin: 30px auto;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            max-width: 800px;
        }
        .functional-section {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 8px;
            margin: 40px 0;
            border: 1px solid #dee2e6;
        }
        .functional-section h2 {
            color: #1e3c72;
        }
        form {
            display: grid;
            gap: 15px;
            max-width: 600px;
            margin-top: 20px;
        }
        input, textarea, select {
            padding: 12px;
            border: 1px solid #ced4da;
            border-radius: 4px;
            font-size: 1rem;
            width: 100%;
        }
        button {
            background: #007bff;
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s;
        }
        button:hover {
            background: #0056b3;
        }
        .star-rating {
            display: flex;
            gap: 5px;
            margin: 10px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.5rem;
            color: #ccc;
            cursor: pointer;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #ffcc00;
        }
        .footer-links {
            background: #343a40;
            color: white;
            padding: 40px 0;
        }
        .web-link-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin-bottom: 30px;
        }
        .web-link {
            background: #495057;
            padding: 15px;
            border-radius: 4px;
            transition: background 0.3s;
        }
        .web-link:hover {
            background: #6c757d;
        }
        .web-link a {
            color: #ffcc00;
            font-weight: 500;
        }
        .copyright {
            text-align: center;
            padding: 20px;
            background: #212529;
            color: #adb5bd;
            font-size: 0.9rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }
        @media (min-width: 992px) {
            .content-grid {
                grid-template-columns: 2fr 1fr;
            }
        }
        .sidebar {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            border: 1px solid #dee2e6;
        }
        .hover-card {
            transition: transform 0.3s, box-shadow 0.3s;
            padding: 20px;
            border-radius: 8px;
            background: white;
            border: 1px solid #dee2e6;
        }
        .hover-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
