        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0c2461 0%, #1e3799 50%, #4a69bd 100%);
            color: #f1f2f6;
            line-height: 1.8;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #74b9ff;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #0984e3;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(25, 42, 86, 0.95);
            backdrop-filter: blur(10px);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 3px solid #74b9ff;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 2.5rem;
            font-weight: 900;
            color: #00cec9;
            text-shadow: 2px 2px 8px rgba(0, 206, 201, 0.7);
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a i {
            font-size: 2rem;
        }
        .logo a:hover {
            color: #00b894;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links li a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 10px 15px;
            border-radius: 8px;
            background: rgba(116, 185, 255, 0.1);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-links li a:hover {
            background: rgba(116, 185, 255, 0.3);
            color: #dfe6e9;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #74b9ff;
            background: none;
            border: none;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.95rem;
            color: #a29bfe;
            margin-top: 10px;
        }
        .breadcrumb a {
            color: #a29bfe;
        }
        .breadcrumb a:hover {
            color: #6c5ce7;
        }
        main {
            flex: 1;
            padding: 40px 0;
            background: rgba(30, 39, 46, 0.8);
            border-radius: 15px;
            margin: 20px auto;
            width: 95%;
            max-width: 1200px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 0 20px;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(45, 52, 54, 0.7);
            padding: 30px;
            border-radius: 15px;
            border-left: 5px solid #00cec9;
        }
        h1, h2, h3 {
            color: #00cec9;
            margin-bottom: 20px;
            text-shadow: 1px 1px 5px rgba(0, 206, 201, 0.5);
        }
        h1 {
            font-size: 3rem;
            text-align: center;
            border-bottom: 3px dashed #74b9ff;
            padding-bottom: 15px;
            margin-bottom: 30px;
        }
        h2 {
            font-size: 2.2rem;
            margin-top: 40px;
            border-left: 4px solid #74b9ff;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: #a29bfe;
            margin-top: 30px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
            color: #dfe6e9;
        }
        .highlight {
            background: rgba(116, 185, 255, 0.2);
            padding: 20px;
            border-radius: 10px;
            border: 1px solid #74b9ff;
            margin: 25px 0;
            font-weight: bold;
            color: #00cec9;
        }
        .emoji {
            font-size: 1.5rem;
            margin-right: 10px;
            vertical-align: middle;
        }
        aside {
            background: rgba(45, 52, 54, 0.7);
            padding: 25px;
            border-radius: 15px;
            border-right: 5px solid #a29bfe;
            height: fit-content;
            position: sticky;
            top: 150px;
        }
        .sidebar-section {
            margin-bottom: 30px;
        }
        .sidebar-section h3 {
            font-size: 1.5rem;
            border-bottom: 2px solid #a29bfe;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        input, textarea, select {
            padding: 12px;
            border-radius: 8px;
            border: 2px solid #74b9ff;
            background: rgba(255, 255, 255, 0.1);
            color: #f1f2f6;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #00cec9;
            background: rgba(255, 255, 255, 0.15);
        }
        button {
            padding: 14px;
            background: linear-gradient(90deg, #00cec9, #0984e3);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        button:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 15px rgba(9, 132, 227, 0.5);
        }
        .rating {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
        }
        .rating input[type="radio"] {
            display: none;
        }
        .rating label {
            font-size: 2rem;
            color: #b2bec3;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .rating label:hover,
        .rating input[type="radio"]:checked ~ label {
            color: #fdcb6e;
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
        }
        .image-container figcaption {
            margin-top: 15px;
            font-style: italic;
            color: #b2bec3;
            font-size: 0.95rem;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
            margin: 40px 0;
            padding: 30px;
            background: rgba(25, 42, 86, 0.7);
            border-radius: 15px;
        }
        .web-link {
            background: rgba(116, 185, 255, 0.1);
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            transition: background 0.3s ease;
        }
        .web-link:hover {
            background: rgba(116, 185, 255, 0.3);
        }
        footer {
            background: rgba(25, 42, 86, 0.95);
            padding: 40px 0 20px;
            margin-top: 50px;
            border-top: 3px solid #00cec9;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .copyright {
            margin-top: 30px;
            text-align: center;
            color: #b2bec3;
            font-size: 0.9rem;
            border-top: 1px solid #4a69bd;
            padding-top: 20px;
            width: 100%;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 20px;
                gap: 10px;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 25px;
                right: 20px;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            .content-wrapper {
                padding: 0 10px;
            }
            article, aside {
                padding: 20px;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
        @media print {
            body {
                background: white;
                color: black;
            }
            header, footer, aside, .web-links, form, .hamburger {
                display: none;
            }
            main {
                box-shadow: none;
                margin: 0;
                padding: 0;
            }
            a {
                color: black;
                text-decoration: underline;
            }
        }
