        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Arial', 'Nirmala UI', sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0c2461 0%, #1e3799 100%);
            color: #f1f2f6;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #ffdd59;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #ffaf40;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(12, 36, 97, 0.95);
            backdrop-filter: blur(10px);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 3px solid #ffdd59;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: #ffdd59;
            text-shadow: 2px 2px 0 #1e3799;
            letter-spacing: 1px;
        }
        .logo span {
            color: #fff;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        nav a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 6px;
        }
        nav a:hover {
            background: rgba(255, 221, 89, 0.2);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffdd59;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.95rem;
            color: #a4b0be;
        }
        .breadcrumb a {
            color: #a4b0be;
        }
        .breadcrumb a:hover {
            color: #ffdd59;
        }
        .search-bar {
            margin: 30px auto;
            max-width: 600px;
        }
        .search-form {
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .search-form input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            font-size: 1.1rem;
            color: #2f3542;
        }
        .search-form button {
            background: #ffdd59;
            color: #0c2461;
            border: none;
            padding: 0 30px;
            font-size: 1.2rem;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #ffaf40;
        }
        main {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 40px;
            margin: 30px auto;
            box-shadow: 0 10px 30px rgba(0,0,0,0.4);
        }
        h1 {
            font-size: 2.8rem;
            color: #ffdd59;
            margin-bottom: 25px;
            line-height: 1.3;
            text-align: center;
        }
        h2 {
            font-size: 2rem;
            color: #70a1ff;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #70a1ff;
        }
        h3 {
            font-size: 1.6rem;
            color: #7bed9f;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: rgba(255, 221, 89, 0.15);
            border-left: 5px solid #ffdd59;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji {
            font-size: 1.3rem;
            margin-right: 8px;
        }
        .feature-img {
            width: 80%;
            margin: 30px auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
            border: 3px solid #ffdd59;
        }
        .user-interaction {
            background: rgba(30, 55, 153, 0.7);
            padding: 30px;
            border-radius: 15px;
            margin: 50px 0;
        }
        .interaction-form {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 8px;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 15px;
            border-radius: 10px;
            border: 2px solid #70a1ff;
            background: rgba(255,255,255,0.1);
            color: white;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 2rem;
            color: #ffdd59;
            cursor: pointer;
        }
        .star:hover {
            transform: scale(1.2);
        }
        .submit-btn {
            background: linear-gradient(to right, #ffdd59, #ffaf40);
            color: #0c2461;
            border: none;
            padding: 18px;
            font-size: 1.2rem;
            font-weight: bold;
            border-radius: 10px;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .submit-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 7px 15px rgba(255, 221, 89, 0.4);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin: 50px 0;
        }
        .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(-10px);
            background: rgba(255, 221, 89, 0.2);
        }
        footer {
            background: rgba(12, 36, 97, 0.98);
            padding: 40px 0 20px;
            text-align: center;
            border-top: 3px solid #ffdd59;
        }
        .copyright {
            margin-top: 30px;
            color: #a4b0be;
            font-size: 0.9rem;
            padding-top: 20px;
            border-top: 1px solid #2f3542;
        }
        @media (max-width: 992px) {
            .web-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(12, 36, 97, 0.98);
                padding: 20px;
                border-top: 2px solid #ffdd59;
            }
            nav.active ul {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            main {
                padding: 25px;
            }
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 576px) {
            .web-links {
                grid-template-columns: 1fr;
            }
            .header-content {
                flex-wrap: wrap;
            }
            .search-form input {
                padding: 15px;
            }
        }
