        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f9fa;
            font-size: 1.05rem;
        }
        a {
            color: #0056b3;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #003d82;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .emoji { font-size: 1.2em; }
        .section-padding {
            padding-top: 60px;
            padding-bottom: 60px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a2a6c, #2a3c8c);
            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 {
            color: white;
            font-size: 1.8rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo span {
            color: #ffcc00;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            color: white;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .main-nav a:hover {
            background-color: rgba(255,255,255,0.15);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 12px 20px;
            font-size: 0.95rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "/";
            margin: 0 10px;
            color: #6c757d;
        }
        .search-section {
            background-color: #fff;
            border-bottom: 1px solid #dee2e6;
            padding: 25px 0;
        }
        .search-form {
            max-width: 700px;
            margin: 0 auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .search-input {
            flex-grow: 1;
            padding: 18px 25px;
            border: none;
            font-size: 1.1rem;
        }
        .search-button {
            background: linear-gradient(to right, #1a2a6c, #2a3c8c);
            color: white;
            border: none;
            padding: 0 35px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: background 0.3s;
        }
        .search-button:hover {
            background: linear-gradient(to right, #0d1a52, #1a2a6c);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 20px;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.05);
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 25px;
            color: #1a2a6c;
            line-height: 1.2;
        }
        h2 {
            font-size: 2.2rem;
            margin-top: 60px;
            margin-bottom: 20px;
            color: #2a3c8c;
            padding-bottom: 10px;
            border-bottom: 3px solid #ffcc00;
        }
        h3 {
            font-size: 1.8rem;
            margin-top: 40px;
            margin-bottom: 15px;
            color: #3a4c9c;
        }
        h4 {
            font-size: 1.4rem;
            margin-top: 30px;
            margin-bottom: 12px;
            color: #4a5cac;
        }
        p {
            margin-bottom: 22px;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: #555;
            margin-bottom: 35px;
            line-height: 1.6;
        }
        .article-image {
            margin: 40px auto;
            max-width: 800px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .article-image figcaption {
            padding: 15px;
            background-color: #f1f3f5;
            font-style: italic;
            color: #666;
            text-align: center;
            font-size: 0.95rem;
        }
        .sidebar {
            background-color: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.05);
            align-self: start;
        }
        .sidebar h3 {
            font-size: 1.6rem;
            margin-top: 0;
            color: #1a2a6c;
            border-bottom: 2px solid #ffcc00;
            padding-bottom: 10px;
        }
        .sidebar ul {
            list-style: none;
            margin-top: 20px;
        }
        .sidebar li {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #ddd;
        }
        .sidebar a {
            font-weight: 600;
            display: block;
        }
        .interaction-module {
            background-color: #f8f9fa;
            border-left: 5px solid #1a2a6c;
            padding: 25px;
            margin: 50px 0;
            border-radius: 0 10px 10px 0;
        }
        .interaction-module h3 {
            margin-top: 0;
            color: #1a2a6c;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 20px;
        }
        .stars {
            display: flex;
            gap: 8px;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
        }
        .stars .star:hover,
        .stars .star.active {
            color: #ffcc00;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            font-weight: 600;
            margin-bottom: 8px;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 12px 15px;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-family: inherit;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-button {
            background: linear-gradient(to right, #1a2a6c, #2a3c8c);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 6px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            align-self: flex-start;
        }
        .submit-button:hover {
            background: linear-gradient(to right, #0d1a52, #1a2a6c);
        }
        .site-footer {
            background: linear-gradient(135deg, #1a2a6c, #0d1a52);
            color: white;
            padding: 60px 0 30px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 20px;
        }
        .footer-logo span {
            color: #ffcc00;
        }
        .footer-heading {
            font-size: 1.4rem;
            margin-bottom: 25px;
            color: #ffcc00;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-heading::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: white;
        }
        friend-link {
            display: block;
            margin-bottom: 10px;
        }
        friend-link a {
            color: #ccc;
        }
        friend-link a:hover {
            color: white;
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .main-nav {
                width: 100%;
                display: none;
                margin-top: 20px;
            }
            .main-nav.active {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0;
            }
            .main-nav li {
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .main-nav a {
                display: block;
                padding: 15px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            .main-content {
                padding: 20px 15px;
                gap: 30px;
            }
            .article-content {
                padding: 25px;
            }
            .section-padding {
                padding-top: 40px;
                padding-bottom: 40px;
            }
        }
