        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #f0f0f0;
            background-color: #0a0a0a;
            background-image: linear-gradient(to bottom, #1a1a1a, #000000);
        }
        a {
            color: #f0c419;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffdd40;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #111111;
            border-bottom: 2px solid #f0c419;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #f0c419;
            text-shadow: 0 0 10px rgba(240, 196, 25, 0.5);
        }
        .logo a {
            color: inherit;
        }
        .logo a:hover {
            text-shadow: 0 0 15px rgba(240, 196, 25, 0.8);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 25px;
        }
        .nav-links a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 5px 10px;
            border-radius: 4px;
        }
        .nav-links a:hover {
            background-color: #f0c419;
            color: #000;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #f0c419;
        }
        .breadcrumb {
            padding: 10px 0;
            font-size: 0.9rem;
            color: #aaa;
            background-color: #1a1a1a;
            border-bottom: 1px solid #333;
        }
        .breadcrumb a {
            color: #f0c419;
        }
        .breadcrumb span {
            margin: 0 5px;
        }
        main {
            padding: 30px 0;
            background-color: #111111;
            border-radius: 8px;
            margin-top: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
        }
        article {
            padding: 0 20px;
        }
        h1 {
            font-size: 3rem;
            color: #f0c419;
            margin-bottom: 20px;
            text-align: center;
            text-shadow: 0 0 10px rgba(240, 196, 25, 0.7);
        }
        h2 {
            font-size: 2.2rem;
            color: #e0e0e0;
            margin: 30px 0 15px;
            border-left: 4px solid #f0c419;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: #d0d0d0;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: #222;
            border-left: 5px solid #f0c419;
            padding: 15px;
            margin: 20px 0;
            font-style: italic;
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .image-container img {
            border-radius: 8px;
            border: 3px solid #333;
            box-shadow: 0 0 20px rgba(240, 196, 25, 0.3);
            max-width: 800px;
            margin: 0 auto;
        }
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .feature-box {
            background-color: #1a1a1a;
            padding: 25px;
            border-radius: 8px;
            border: 1px solid #333;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(240, 196, 25, 0.2);
        }
        .feature-box h3 {
            color: #f0c419;
            margin-top: 0;
        }
        .feature-box form {
            display: flex;
            flex-direction: column;
        }
        .feature-box input,
        .feature-box textarea,
        .feature-box select {
            padding: 12px;
            margin-bottom: 15px;
            border: 1px solid #444;
            border-radius: 4px;
            background-color: #222;
            color: #f0f0f0;
            font-size: 1rem;
        }
        .feature-box button {
            padding: 12px;
            background-color: #f0c419;
            color: #000;
            border: none;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        .feature-box button:hover {
            background-color: #ffdd40;
        }
        .rating {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 15px 0;
        }
        .rating input {
            display: none;
        }
        .rating label {
            font-size: 2rem;
            color: #444;
            cursor: pointer;
        }
        .rating input:checked ~ label,
        .rating label:hover,
        .rating label:hover ~ label {
            color: #f0c419;
        }
        footer {
            background-color: #000;
            color: #aaa;
            padding: 40px 0 20px;
            margin-top: 50px;
            border-top: 2px solid #f0c419;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        .web-link {
            background-color: #111;
            padding: 15px;
            border-radius: 6px;
            border: 1px solid #333;
        }
        .web-link a {
            display: block;
            margin: 5px 0;
            color: #f0c419;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            font-size: 0.9rem;
            color: #777;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #111;
                padding: 20px;
                border-top: 1px solid #333;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 10px 0;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .features {
                grid-template-columns: 1fr;
            }
        }
