        * {
            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;
        }
        img {
            max-width: 100%;
            height: auto;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background: linear-gradient(135deg, #1a237e, #0d47a1);
            color: white;
            padding: 15px 0;
            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;
        }
        .logo a {
            font-size: 2rem;
            font-weight: bold;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: transform 0.3s;
        }
        .logo a:hover {
            transform: scale(1.05);
        }
        .logo span {
            color: #ffcc00;
        }
        .breadcrumb {
            margin-top: 10px;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #ffcc00;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 20px;
        }
        nav ul li a {
            color: white;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 5px;
            transition: background 0.3s;
        }
        nav ul li a:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: white;
        }
        main {
            padding: 30px 0;
            background: white;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: #fff;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        h1, h2, h3 {
            color: #1a237e;
            margin-bottom: 15px;
        }
        h1 {
            font-size: 2.5rem;
            border-bottom: 3px solid #ffcc00;
            padding-bottom: 10px;
        }
        h2 {
            font-size: 1.8rem;
            margin-top: 25px;
        }
        h3 {
            font-size: 1.4rem;
            margin-top: 20px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            line-height: 1.8;
        }
        .highlight {
            background: #fffacd;
            padding: 15px;
            border-left: 5px solid #ffcc00;
            margin: 20px 0;
            border-radius: 5px;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        b {
            color: #d50000;
        }
        .featured-image {
            text-align: center;
            margin: 30px 0;
        }
        .featured-image img {
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            transition: transform 0.5s;
        }
        .featured-image img:hover {
            transform: scale(1.02);
        }
        aside {
            background: #f1f8ff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget h3 {
            font-size: 1.2rem;
            color: #0d47a1;
            border-bottom: 2px solid #ffcc00;
            padding-bottom: 8px;
        }
        form {
            display: flex;
            flex-direction: column;
        }
        input, textarea, select {
            padding: 12px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            border-color: #007bff;
            outline: none;
        }
        button {
            padding: 12px 20px;
            background: #007bff;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s;
        }
        button:hover {
            background: #0056b3;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }
        .stars i {
            color: #ccc;
            cursor: pointer;
            font-size: 1.5rem;
            transition: color 0.3s;
        }
        .stars i:hover,
        .stars i.active {
            color: #ffcc00;
        }
        footer {
            background: #1a237e;
            color: white;
            padding: 40px 0 20px;
        }
        .internal-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }
        @media (max-width: 992px) {
            .internal-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 576px) {
            .internal-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background: rgba(255, 255, 255, 0.1);
            padding: 12px;
            border-radius: 5px;
            text-align: center;
            transition: background 0.3s;
        }
        .web-link:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        .web-link a {
            color: #ffcc00;
            font-weight: 500;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            font-size: 0.9rem;
            color: #ccc;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0d47a1;
                padding: 15px;
                border-radius: 5px;
                margin-top: 15px;
            }
            nav ul.active {
                display: flex;
            }
            nav ul li {
                margin: 10px 0;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
        }
