        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #0c2461 0%, #1e3799 50%, #4a69bd 100%);
            color: #f7f7f7;
            line-height: 1.8;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #ffd32a;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #fffa65;
            text-shadow: 0 0 8px rgba(255, 211, 42, 0.7);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .text-highlight { color: #ffd32a; font-weight: bold; }
        .btn {
            display: inline-block;
            background: linear-gradient(to right, #ff8a00, #da1b60);
            color: white;
            padding: 14px 30px;
            border-radius: 50px;
            border: none;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            font-size: 1.05rem;
        }
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(218, 27, 96, 0.3);
        }
        .section {
            padding: 60px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .section-title {
            font-size: 2.8rem;
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 5px;
            background: #ffd32a;
            border-radius: 3px;
        }
        header {
            background: rgba(12, 36, 97, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: 900;
            color: #ffd32a;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .logo span {
            color: #4a69bd;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 25px;
        }
        .nav-desktop a:hover {
            background: rgba(255, 211, 42, 0.15);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffd32a;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(12, 36, 97, 0.98);
            padding: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 1.2rem;
        }
        .breadcrumb {
            padding: 15px 20px;
            background: rgba(0, 0, 0, 0.2);
            font-size: 0.95rem;
        }
        .breadcrumb a { color: #ccc; }
        .breadcrumb a:hover { color: #ffd32a; }
        .breadcrumb span { color: #aaa; margin: 0 10px; }
        .hero {
            padding: 80px 20px;
            text-align: center;
            background: radial-gradient(circle at center, rgba(30, 55, 153, 0.7), rgba(12, 36, 97, 0.9));
            position: relative;
            overflow: hidden;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #e0e0e0;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 20px;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        main {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 40px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        article h2 {
            font-size: 2.3rem;
            margin: 40px 0 20px;
            color: #ffd32a;
        }
        article h3 {
            font-size: 1.8rem;
            margin: 30px 0 15px;
            color: #4a69bd;
        }
        article p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            color: #ddd;
            line-height: 1.9;
        }
        article ul, article ol {
            margin-left: 25px;
            margin-bottom: 25px;
            color: #ddd;
        }
        article li {
            margin-bottom: 10px;
        }
        .highlight-box {
            background: rgba(255, 211, 42, 0.1);
            border-left: 5px solid #ffd32a;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 15px 15px 0;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #aaa;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        aside {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 30px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 40px;
        }
        .widget h3 {
            color: #ffd32a;
            margin-bottom: 20px;
            font-size: 1.5rem;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(255, 211, 42, 0.3);
        }
        .search-box {
            display: flex;
        }
        .search-box input {
            flex-grow: 1;
            padding: 15px;
            border: none;
            border-radius: 10px 0 0 10px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
        }
        .search-box button {
            background: #ff8a00;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 10px 10px 0;
            cursor: pointer;
            font-size: 1.2rem;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #ffd32a;
            margin: 15px 0;
        }
        .stars i {
            cursor: pointer;
            transition: color 0.3s, transform 0.2s;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            font-size: 1rem;
            min-height: 150px;
            margin-bottom: 15px;
            resize: vertical;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            padding: 50px 20px;
            background: rgba(0, 0, 0, 0.3);
        }
        @media (max-width: 768px) {
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background: rgba(255, 211, 42, 0.1);
        }
        footer {
            background: #0c2461;
            padding: 30px 20px;
            text-align: center;
            color: #aaa;
            font-size: 0.95rem;
        }
        .footer-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .social-icons {
            display: flex;
            gap: 20px;
            font-size: 1.5rem;
        }
        @media (max-width: 768px) {
            .section-title { font-size: 2.2rem; }
            .hero h1 { font-size: 2.5rem; }
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            .header-container { padding: 12px 15px; }
            .content-wrapper { padding: 20px 15px; }
            main { padding: 25px; }
            .footer-container { flex-direction: column; }
        }
