        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
            font-size: 18px;
        }
        a {
            text-decoration: none;
            color: #8a2be2;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #6a0dad;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #8a2be2, #4b0082);
            color: white;
            padding: 20px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: bold;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            font-size: 2.8rem;
        }
        .logo a {
            color: white;
        }
        .logo a:hover {
            color: #ffd700;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links li a {
            color: white;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 5px;
            transition: background 0.3s ease;
        }
        .nav-links li a:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .breadcrumb {
            margin-top: 15px;
            font-size: 0.9rem;
            color: #ddd;
        }
        .breadcrumb a {
            color: #ffd700;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            padding: 40px 0;
            background: white;
            border-radius: 10px;
            margin: 30px auto;
            box-shadow: 0 6px 20px rgba(0,0,0,0.05);
        }
        article {
            padding: 0 30px;
        }
        h1 {
            font-size: 2.8rem;
            color: #4b0082;
            margin-bottom: 25px;
            text-align: center;
        }
        h2 {
            font-size: 2.2rem;
            color: #8a2be2;
            margin: 40px 0 20px;
            border-bottom: 3px solid #ffd700;
            padding-bottom: 10px;
        }
        h3 {
            font-size: 1.8rem;
            color: #6a0dad;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 25px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: #fffacd;
            padding: 20px;
            border-left: 5px solid #ffd700;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji {
            font-size: 1.3rem;
            margin-right: 8px;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            margin: 30px auto;
            display: block;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            border: 3px solid #8a2be2;
        }
        figcaption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 10px;
        }
        .form-section {
            background: #f9f9ff;
            padding: 30px;
            border-radius: 15px;
            margin: 40px 0;
            border: 2px dashed #8a2be2;
        }
        .form-section h3 {
            color: #4b0082;
        }
        form {
            display: grid;
            gap: 20px;
            max-width: 800px;
            margin: 0 auto;
        }
        input, textarea, select {
            width: 100%;
            padding: 15px;
            border: 2px solid #ccc;
            border-radius: 10px;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            border-color: #8a2be2;
            outline: none;
        }
        button {
            background: linear-gradient(to right, #8a2be2, #6a0dad);
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: transform 0.3s ease, background 0.3s ease;
        }
        button:hover {
            transform: translateY(-3px);
            background: linear-gradient(to right, #6a0dad, #4b0082);
        }
        .rating {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
        }
        .rating input {
            width: auto;
        }
        .internal-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 50px 0 30px;
        }
        .web-link {
            background: white;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.1);
        }
        .web-link a {
            color: #4b0082;
            font-weight: bold;
        }
        footer {
            background: #2c003e;
            color: white;
            padding: 40px 0 20px;
            text-align: center;
        }
        .copyright {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #555;
            font-size: 0.9rem;
            color: #ccc;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: flex-start;
            }
            .nav-links {
                flex-direction: column;
                display: none;
                width: 100%;
                margin-top: 20px;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 30px;
                right: 20px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .form-section {
                padding: 20px;
            }
            .internal-links {
                grid-template-columns: 1fr;
            }
        }
        .text-center {
            text-align: center;
        }
        .bold {
            font-weight: bold;
            color: #4b0082;
        }
        .spacing {
            margin-bottom: 40px;
        }
