        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f8f9ff;
            color: #222;
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: #4a6ee0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff6b8b;
        }
        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, #0a2463 0%, #3e1b6b 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            color: #fff;
            font-size: 2.2rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: linear-gradient(90deg, #ffd166, #ff6b8b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .logo span {
            color: #06d6a0;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: #e2e8ff;
            font-weight: 600;
            padding: 0.5rem 0.75rem;
            border-radius: 4px;
        }
        nav a:hover, nav a.active {
            background-color: rgba(255, 255, 255, 0.15);
            color: #fff;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #fff;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 0.8rem 20px;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            color: #4a6ee0;
        }
        .breadcrumb i {
            margin: 0 8px;
            font-size: 0.8rem;
        }
        .search-section {
            background-color: #fff;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin: 2rem auto;
            max-width: 800px;
        }
        .search-form {
            display: flex;
            gap: 0;
        }
        .search-form input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: 2px solid #4a6ee0;
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            outline: none;
        }
        .search-form button {
            background: linear-gradient(to right, #4a6ee0, #6a4de0);
            color: white;
            border: none;
            padding: 0 2rem;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .search-form button:hover {
            background: linear-gradient(to right, #3a5ed0, #5a3dd0);
            transform: scale(1.02);
        }
        main {
            flex: 1;
            padding: 1rem 0 3rem;
        }
        article {
            background-color: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 8px 25px rgba(0,0,0,0.06);
            margin-bottom: 2rem;
        }
        h1 {
            font-size: 2.8rem;
            color: #0a2463;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 6px solid #ff6b8b;
            padding-left: 1rem;
        }
        h2 {
            font-size: 2rem;
            color: #3e1b6b;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #06d6a0;
        }
        h3 {
            font-size: 1.5rem;
            color: #4a6ee0;
            margin: 1.8rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: #333;
            background-color: #f0f4ff;
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 2rem;
        }
        .highlight {
            background-color: #fffacd;
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
            font-weight: 600;
        }
        blockquote {
            border-left: 5px solid #ffd166;
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: #555;
            background-color: #fffdf0;
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
        }
        .image-container {
            margin: 2.5rem auto;
            text-align: center;
            max-width: 900px;
        }
        .image-container img {
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            transition: transform 0.5s ease;
        }
        .image-container img:hover {
            transform: scale(1.01);
        }
        .image-caption {
            font-size: 0.95rem;
            color: #666;
            margin-top: 0.8rem;
            font-style: italic;
        }
        .interactive-links {
            background: linear-gradient(135deg, #e0f7fa, #f3e5f5);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .interactive-links h3 {
            color: #d81b60;
        }
        .user-interaction {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .comment-box, .rating-box {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .comment-box h3, .rating-box h3 {
            margin-top: 0;
            color: #0a2463;
        }
        .comment-form textarea, .rating-form select {
            width: 100%;
            padding: 1rem;
            margin: 1rem 0;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            resize: vertical;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 2rem;
            color: #ffd166;
        }
        .rating-stars i {
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-stars i:hover {
            color: #ffb300;
        }
        .submit-btn {
            background: linear-gradient(to right, #06d6a0, #0cb48a);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            width: 100%;
            transition: all 0.3s ease;
        }
        .submit-btn:hover {
            background: linear-gradient(to right, #05c595, #0aa078);
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(6, 214, 160, 0.3);
        }
        .footer-links {
            background-color: #2d3047;
            padding: 3rem 0 2rem;
            margin-top: 3rem;
        }
        .web-link-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        .web-link {
            background-color: #3a3e5e;
            padding: 1.2rem;
            border-radius: 8px;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }
        .web-link:hover {
            background-color: #4a507a;
            transform: translateY(-5px);
        }
        .web-link a {
            color: #e2e8ff;
            font-weight: 500;
            display: block;
            text-align: center;
        }
        .web-link a:hover {
            color: #ffd166;
        }
        footer {
            background-color: #1a1b2e;
            color: #b0b7d6;
            text-align: center;
            padding: 2rem 0;
            font-size: 0.95rem;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }
        .social-icons {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 1rem;
        }
        .social-icons a {
            color: #b0b7d6;
            font-size: 1.5rem;
            transition: color 0.3s ease;
        }
        .social-icons a:hover {
            color: #4a6ee0;
        }
        .copyright {
            border-top: 1px solid #2d3047;
            padding-top: 1.5rem;
            width: 100%;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.8rem; }
            article { padding: 2rem; }
        }
        @media (max-width: 768px) {
            .header-content { flex-wrap: wrap; }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #0a2463;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                border-top: 1px solid rgba(255,255,255,0.1);
            }
            nav ul.active {
                display: flex;
            }
            .hamburger { display: block; }
            .user-interaction {
                grid-template-columns: 1fr;
            }
            .search-form input {
                padding: 0.8rem 1.2rem;
            }
        }
        @media (max-width: 576px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.6rem; }
            article { padding: 1.5rem; }
            .lead { font-size: 1.1rem; }
            .search-form { flex-direction: column; }
            .search-form input, .search-form button {
                border-radius: 50px;
                width: 100%;
                margin-bottom: 0.5rem;
            }
        }
