        * {
            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;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        ul {
            list-style: none;
        }
        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, #1a237e, #283593);
            color: #fff;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #ffeb3b;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            transition: transform 0.3s ease;
        }
        .logo:hover {
            transform: scale(1.05);
        }
        .burger-menu {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            background: none;
            border: none;
            color: #fff;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-grow: 1;
            margin-left: 40px;
        }
        nav ul {
            display: flex;
            gap: 30px;
        }
        nav a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 20px;
            transition: all 0.3s ease;
        }
        nav a:hover {
            background-color: #ffeb3b;
            color: #1a237e;
        }
        .breadcrumb {
            margin-top: 10px;
            font-size: 0.9rem;
            color: #ccc;
        }
        .breadcrumb a {
            color: #ffeb3b;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .search-bar {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 25px;
            padding: 5px 15px;
        }
        .search-bar input {
            flex: 1;
            padding: 8px;
            border: none;
            background: transparent;
            color: #fff;
            outline: none;
        }
        .search-bar input::placeholder {
            color: #ccc;
        }
        .search-bar button {
            background: #ffeb3b;
            border: none;
            padding: 8px 15px;
            border-radius: 20px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-bar button:hover {
            background: #fbc02d;
        }
        main {
            padding: 30px 0;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin: 20px auto;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            padding: 20px;
        }
        aside {
            padding: 20px;
            background: #f1f8ff;
            border-radius: 10px;
            border-left: 5px solid #283593;
        }
        h1 {
            font-size: 2.8rem;
            color: #1a237e;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        h2 {
            font-size: 2.2rem;
            color: #283593;
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 3px solid #ffeb3b;
        }
        h3 {
            font-size: 1.8rem;
            color: #3949ab;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: #fff9c4;
            padding: 20px;
            border-left: 5px solid #ffeb3b;
            margin: 25px 0;
            border-radius: 5px;
        }
        .highlight p {
            margin-bottom: 0;
            font-weight: bold;
            color: #333;
        }
        .emoji {
            font-size: 1.5rem;
            margin-right: 8px;
        }
        b {
            color: #1a237e;
        }
        .line-spacing {
            line-height: 1.8;
        }
        .section-spacing {
            margin-top: 40px;
            margin-bottom: 40px;
        }
        .feature-image {
            width: 100%;
            margin: 30px 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.5s ease;
        }
        .feature-image:hover {
            transform: translateY(-5px);
        }
        .feature-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .form-section {
            background: #f1f8ff;
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #283593;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px;
            border: 2px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #283593;
            outline: none;
        }
        .btn {
            background: linear-gradient(to right, #283593, #1a237e);
            color: #fff;
            padding: 12px 30px;
            border: none;
            border-radius: 25px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
        }
        .btn:hover {
            background: linear-gradient(to right, #1a237e, #283593);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        .rating {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .rating i {
            color: #ffc107;
            cursor: pointer;
            font-size: 1.5rem;
            transition: color 0.3s;
        }
        .rating i:hover {
            color: #ff9800;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            padding: 40px 0;
            background: #e8eaf6;
            border-top: 3px solid #283593;
        }
        @media (max-width: 768px) {
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .footer-links {
                grid-template-columns: 1fr;
            }
        }
        .web-link {
            background: #fff;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
        }
        .web-link a {
            color: #283593;
            font-weight: 600;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        footer {
            background: #1a237e;
            color: #fff;
            text-align: center;
            padding: 25px 0;
        }
        .copyright {
            font-size: 0.95rem;
            opacity: 0.9;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .burger-menu {
                display: block;
            }
            .nav-container {
                display: none;
                width: 100%;
                margin-left: 0;
                margin-top: 20px;
                flex-direction: column;
                align-items: flex-start;
            }
            .nav-container.active {
                display: flex;
            }
            nav ul {
                flex-direction: column;
                width: 100%;
                gap: 10px;
            }
            nav a {
                display: block;
                padding: 12px;
                border-radius: 5px;
            }
            .search-bar {
                width: 100%;
                margin-top: 15px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .content-wrapper {
                gap: 20px;
            }
            .footer-links {
                padding: 20px;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        main, aside, .form-section {
            animation: fadeIn 0.8s ease-out;
        }
