        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f9fa;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        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, #6a11cb 0%, #2575fc 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 {
            font-size: 2.2rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #FFD700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .logo:hover {
            transform: scale(1.05);
            transition: transform 0.3s ease;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        .nav-links a:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #e9ecef;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #6a11cb;
            font-weight: 500;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            padding: 2rem 0;
            background: white;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.05);
            margin: 2rem auto;
        }
        article {
            padding: 2rem;
        }
        h1 {
            font-size: 2.8rem;
            color: #2575fc;
            margin-bottom: 1.5rem;
            text-align: center;
        }
        h2 {
            font-size: 2.2rem;
            color: #6a11cb;
            margin: 2rem 0 1rem;
            border-bottom: 3px solid #FFD700;
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #333;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        strong {
            color: #d32f2f;
            font-weight: 700;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .highlight-box {
            background: linear-gradient(to right, #fffde7, #e3f2fd);
            border-left: 5px solid #FFD700;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 12px 12px 0;
        }
        .featured-image {
            width: 80%;
            margin: 2rem auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }
        .featured-image img {
            transition: transform 0.5s ease;
        }
        .featured-image img:hover {
            transform: scale(1.03);
        }
        .form-section {
            background: #f1f8ff;
            padding: 2rem;
            border-radius: 12px;
            margin: 3rem 0;
            box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
        }
        .form-title {
            font-size: 1.8rem;
            color: #2575fc;
            margin-bottom: 1.5rem;
            text-align: center;
        }
        form {
            display: grid;
            gap: 1.5rem;
            max-width: 800px;
            margin: 0 auto;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        label {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #555;
        }
        input, textarea, select {
            padding: 1rem;
            border: 2px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            border-color: #6a11cb;
            outline: none;
        }
        button {
            padding: 1rem 2rem;
            background: linear-gradient(to right, #6a11cb, #2575fc);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            justify-self: center;
            min-width: 200px;
        }
        button:hover {
            background: linear-gradient(to right, #2575fc, #6a11cb);
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(106, 17, 203, 0.3);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #FFD700;
            cursor: pointer;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            padding: 3rem 0;
            background: #2d3436;
            color: white;
        }
        .web-link {
            background: #444;
            padding: 1.2rem;
            border-radius: 8px;
            text-align: center;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: #6a11cb;
            transform: translateY(-5px);
        }
        .web-link a {
            font-size: 1.1rem;
            font-weight: 600;
        }
        footer {
            background: #1a1a1a;
            color: #bbb;
            text-align: center;
            padding: 2rem;
            font-size: 0.95rem;
        }
        .copyright {
            margin-top: 1rem;
            border-top: 1px solid #444;
            padding-top: 1rem;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(106, 17, 203, 0.95);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                border-radius: 0 0 12px 12px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .featured-image {
                width: 100%;
            }
            .web-links {
                grid-template-columns: 1fr;
                padding: 2rem;
            }
            form {
                grid-template-columns: 1fr;
            }
        }
        .text-center {
            text-align: center;
        }
        .mb-3 {
            margin-bottom: 3rem;
        }
