        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: #0066cc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #e63946;
        }
        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, #0c2461, #1e3799);
            color: white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a i {
            color: #fdcb6e;
        }
        .nav-desktop ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-desktop a {
            color: #dfe6e9;
            font-weight: 600;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .nav-desktop a:hover {
            color: #fdcb6e;
            border-bottom-color: #fdcb6e;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            background-color: #1a237e;
            padding: 20px;
        }
        .nav-mobile.active {
            display: block;
        }
        .nav-mobile ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .nav-mobile a {
            color: #dfe6e9;
            display: block;
            padding: 10px;
            border-radius: 5px;
        }
        .nav-mobile a:hover {
            background-color: #283593;
        }
        .breadcrumb {
            background-color: #e3f2fd;
            padding: 12px 20px;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            color: #0c2461;
        }
        .breadcrumb span {
            color: #777;
        }
        main {
            flex: 1;
            padding: 30px 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        article h1 {
            font-size: 2.8rem;
            color: #0c2461;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        article h2 {
            font-size: 2rem;
            color: #1a237e;
            margin-top: 40px;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0f0f0;
        }
        article h3 {
            font-size: 1.5rem;
            color: #283593;
            margin-top: 30px;
            margin-bottom: 10px;
        }
        article p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: #555;
            font-weight: 500;
            background-color: #f8f9fa;
            padding: 20px;
            border-left: 5px solid #0066cc;
            border-radius: 0 8px 8px 0;
            margin-bottom: 30px;
        }
        .highlight {
            background-color: #fffde7;
            padding: 25px;
            border-radius: 8px;
            border-left: 5px solid #fdcb6e;
            margin: 25px 0;
        }
        .inline-link {
            font-weight: 700;
            color: #1a237e;
            border-bottom: 1px dashed #1a237e;
        }
        .inline-link:hover {
            border-bottom-style: solid;
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 30px 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: -25px;
            margin-bottom: 30px;
            font-size: 0.95rem;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background-color: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .sidebar-widget h3 {
            color: #0c2461;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0f0f0;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid #ccc;
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: #0c2461;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .search-form button:hover {
            background-color: #1a237e;
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dotted #eee;
        }
        .related-links a {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #333;
        }
        .related-links a:hover {
            color: #0066cc;
        }
        .related-links i {
            color: #0c2461;
        }
        .user-interaction {
            margin-top: 50px;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        .interaction-box {
            background-color: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .interaction-box h3 {
            color: #0c2461;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .rating-stars {
            display: flex;
            gap: 5px;
            margin-bottom: 20px;
            font-size: 1.8rem;
            color: #ccc;
            cursor: pointer;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: #fdcb6e;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #555;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(to right, #0c2461, #1e3799);
            color: white;
            border: none;
            padding: 14px 25px;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(12, 36, 97, 0.2);
        }
        footer {
            background-color: #0c2461;
            color: #dfe6e9;
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
        }
        .footer-logo p {
            margin-top: 10px;
            color: #b0bec5;
        }
        friend-link {
            display: block;
            margin-top: 15px;
        }
        friend-link a {
            color: #fdcb6e;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid #1a237e;
            color: #b0bec5;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container {
                padding: 12px 15px;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            article {
                padding: 25px;
            }
            article h1 {
                font-size: 2.2rem;
            }
            article h2 {
                font-size: 1.7rem;
            }
            .interaction-grid {
                grid-template-columns: 1fr;
            }
            .sidebar-widget {
                padding: 20px;
            }
        }
        @media (max-width: 480px) {
            article {
                padding: 20px;
            }
            article h1 {
                font-size: 1.9rem;
            }
            .lead {
                font-size: 1.1rem;
                padding: 15px;
            }
        }
        @media print {
            header, aside, .user-interaction, footer, .breadcrumb {
                display: none;
            }
            body {
                background: white;
                color: black;
            }
            article {
                box-shadow: none;
                padding: 0;
            }
            a {
                color: black;
                text-decoration: underline;
            }
        }
