* { 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; }
        a { text-decoration: none; color: #2a6ebb; transition: color 0.3s; }
        a:hover { color: #1d4a8d; }
        img { max-width: 100%; height: auto; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        header { background: linear-gradient(135deg, #2a6ebb, #1d4a8d); color: white; padding: 15px 0; 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: 2.2rem; font-weight: 800; color: white; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
        .nav-desktop ul { display: flex; list-style: none; gap: 25px; }
        .nav-desktop a { color: white; font-weight: 600; padding: 8px 12px; border-radius: 5px; }
        .nav-desktop a:hover { background-color: rgba(255,255,255,0.2); }
        .search-box form { display: flex; }
        .search-box input { padding: 10px 15px; border: none; border-radius: 5px 0 0 5px; width: 200px; }
        .search-box button { background: #ffcc00; border: none; border-radius: 0 5px 5px 0; padding: 10px 15px; cursor: pointer; }
        .search-box button:hover { background: #e6b800; }
        .hamburger { display: none; background: none; border: none; color: white; font-size: 1.8rem; cursor: pointer; }
        .nav-mobile { display: none; background: #1d4a8d; margin-top: 10px; padding: 15px; border-radius: 5px; }
        .nav-mobile ul { list-style: none; }
        .nav-mobile li { margin: 10px 0; }
        .nav-mobile a { color: white; display: block; padding: 8px; }
        .breadcrumb { padding: 10px 0; font-size: 0.9rem; color: #ddd; }
        .breadcrumb a { color: #ffcc00; }
        main { padding: 30px 0; }
        article { background: white; border-radius: 10px; padding: 30px; box-shadow: 0 6px 15px rgba(0,0,0,0.05); }
        h1 { font-size: 2.8rem; margin-bottom: 15px; color: #2a6ebb; }
        .article-meta { color: #666; margin-bottom: 25px; padding-bottom: 15px; border-bottom: 1px solid #eee; }
        .content { font-size: 1.1rem; }
        .content h2 { color: #1d4a8d; margin: 25px 0 15px; font-size: 2rem; }
        .content h3 { color: #2a6ebb; margin: 20px 0 10px; font-size: 1.6rem; }
        .content p { margin-bottom: 20px; text-align: justify; }
        .content strong { color: #1d4a8d; }
        .content ul, .content ol { margin-left: 25px; margin-bottom: 20px; }
        blockquote { border-left: 5px solid #ffcc00; padding-left: 20px; margin: 20px 0; font-style: italic; color: #555; }
        .rating-section, .comments-section { margin-top: 40px; padding-top: 25px; border-top: 2px dashed #eee; }
        .stars input { display: none; }
        .stars label { font-size: 1.8rem; color: #ccc; cursor: pointer; transition: color 0.2s; }
        .stars input:checked ~ label, .stars label:hover, .stars label:hover ~ label { color: #ffcc00; }
        .rating-section button, .comments-section button { background: #2a6ebb; color: white; border: none; padding: 12px 25px; border-radius: 5px; cursor: pointer; margin-top: 15px; }
        .rating-section button:hover, .comments-section button:hover { background: #1d4a8d; }
        .comments-section textarea, .comments-section input[type="text"] { width: 100%; max-width: 500px; padding: 12px; margin-bottom: 15px; border: 1px solid #ccc; border-radius: 5px; }
        .comment { background: #f9f9f9; padding: 15px; margin: 15px 0; border-radius: 5px; }
        .internal-links { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 15px; margin: 40px 0; }
        .web-link { background: #e9f0fb; padding: 15px; border-radius: 8px; text-align: center; }
        .web-link a { color: #2a6ebb; font-weight: 600; }
        .web-link:hover { background: #d4e3ff; transform: translateY(-3px); transition: all 0.3s; }
        footer { background: #1d4a8d; color: white; text-align: center; padding: 25px 0; margin-top: 30px; }
        .footer-content a { color: #ffcc00; }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            .search-box input { width: 150px; }
            h1 { font-size: 2.2rem; }
            .header-top { flex-direction: column; align-items: flex-start; gap: 15px; }
            .nav-mobile.active { display: block; }
            .internal-links { grid-template-columns: 1fr; }
        }
        @media (min-width: 769px) {
            .nav-mobile { display: none !important; }
        }
