        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f5f5f5;
            padding: 0;
            margin: 0;
        }
        a {
            text-decoration: none;
            color: #d32f2f;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #9a0007;
        }
        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, #000000, #d32f2f);
            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 a {
            font-size: 2.5rem;
            font-weight: bold;
            color: white;
            font-family: 'Arial Black', sans-serif;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .logo a:hover {
            text-shadow: 0 0 10px #ff5722;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            color: white;
            font-weight: 600;
            padding: 10px 15px;
            border-radius: 5px;
        }
        .desktop-nav a:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background-color: #222;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            z-index: 1000;
        }
        .mobile-nav ul {
            list-style: none;
            padding: 20px;
        }
        .mobile-nav li {
            margin: 15px 0;
        }
        .mobile-nav a {
            color: white;
            display: block;
            padding: 10px;
            border-left: 4px solid #d32f2f;
        }
        .mobile-nav a:hover {
            background-color: #444;
        }
        #nav-checkbox:checked ~ .mobile-nav {
            display: block;
        }
        .breadcrumb {
            margin-top: 15px;
            font-size: 0.9rem;
            color: #ccc;
        }
        .breadcrumb a {
            color: #ffcc00;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            background-color: white;
            padding: 40px 20px;
            margin: 30px auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        article {
            max-width: 900px;
            margin: 0 auto;
        }
        h1 {
            font-size: 3rem;
            color: #d32f2f;
            margin-bottom: 20px;
            text-align: center;
            border-bottom: 3px solid #ff9800;
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2.2rem;
            color: #000;
            margin-top: 40px;
            margin-bottom: 15px;
            border-left: 5px solid #d32f2f;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: #555;
            margin-top: 30px;
            margin-bottom: 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: #fff9c4;
            padding: 15px;
            border-left: 4px solid #ffeb3b;
            margin: 20px 0;
            font-weight: bold;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .featured-image {
            margin: 30px auto;
            text-align: center;
        }
        .featured-image img {
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }
        .featured-image img:hover {
            transform: scale(1.02);
        }
        .caption {
            font-style: italic;
            color: #666;
            margin-top: 10px;
        }
        .link-list {
            margin: 30px 0;
            padding: 20px;
            background-color: #f9f9f9;
            border-radius: 8px;
        }
        .link-list h3 {
            color: #d32f2f;
        }
        .link-list ul {
            list-style: none;
            padding-left: 20px;
        }
        .link-list li {
            margin: 10px 0;
        }
        .link-list a {
            color: #1565c0;
        }
        .link-list a:hover {
            text-decoration: underline;
        }
        .form-section {
            margin: 50px 0;
            padding: 30px;
            background: linear-gradient(145deg, #e3f2fd, #bbdefb);
            border-radius: 15px;
            box-shadow: 0 6px 12px rgba(0,0,0,0.1);
        }
        .form-section h2 {
            color: #0d47a1;
            border-left: 5px solid #0d47a1;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px;
            border: 2px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            border-color: #d32f2f;
            outline: none;
        }
        button {
            background: linear-gradient(to right, #d32f2f, #ff5722);
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 1.1rem;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: bold;
        }
        button:hover {
            background: linear-gradient(to right, #9a0007, #d84315);
            box-shadow: 0 6px 12px rgba(211, 47, 47, 0.4);
        }
        .rating {
            display: flex;
            gap: 10px;
            align-items: center;
        }
        .rating input {
            width: auto;
        }
        .internal-links {
            background-color: #222;
            color: white;
            padding: 40px 20px;
            margin-top: 50px;
        }
        .web-link {
            display: inline-block;
            margin: 10px 20px;
            padding: 10px 15px;
            background-color: #444;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }
        .web-link a {
            color: #ffcc00;
        }
        .web-link:hover {
            background-color: #666;
        }
        footer {
            background-color: #000;
            color: #aaa;
            text-align: center;
            padding: 30px 20px;
        }
        .copyright {
            margin-top: 20px;
            font-size: 0.9rem;
            border-top: 1px solid #444;
            padding-top: 20px;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: flex-start;
            }
            .desktop-nav {
                display: none;
            }
            .mobile-nav-toggle {
                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;
            }
            .web-link {
                display: block;
                margin: 10px 0;
            }
        }
        @media (min-width: 769px) {
            .mobile-nav-toggle {
                display: none;
            }
        }
