        * {
            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: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
        }
        a {
            text-decoration: none;
            color: #ff6b6b;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ee5a24;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: #2d3436;
            color: white;
            padding: 15px 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: 1.8rem;
            font-weight: bold;
            color: #ff9f43;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo a {
            color: inherit;
        }
        .nav-desktop {
            display: flex;
            gap: 25px;
        }
        .nav-desktop a {
            color: white;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .nav-desktop a:hover {
            background: #ff9f43;
            color: #2d3436;
        }
        .search-box {
            display: flex;
            align-items: center;
            background: white;
            border-radius: 25px;
            padding: 5px 15px;
        }
        .search-box input {
            border: none;
            outline: none;
            padding: 8px;
            width: 200px;
            border-radius: 25px;
        }
        .search-box button {
            background: #ff9f43;
            border: none;
            color: white;
            padding: 8px 15px;
            border-radius: 25px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #ff7f00;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: #2d3436;
            padding: 15px;
            margin-top: 10px;
            border-radius: 8px;
        }
        .nav-mobile a {
            color: white;
            padding: 10px;
            border-bottom: 1px solid #444;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 15px 0;
            background: #dfe6e9;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #636e72;
        }
        .breadcrumb a:hover {
            color: #2d3436;
        }
        main {
            padding: 30px 0;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin: 20px auto;
        }
        article {
            padding: 20px;
        }
        h1 {
            font-size: 2.5rem;
            color: #2d3436;
            margin-bottom: 20px;
            text-align: center;
            border-bottom: 3px solid #ff9f43;
            padding-bottom: 10px;
        }
        h2 {
            font-size: 2rem;
            color: #0984e3;
            margin: 30px 0 15px;
            padding-left: 10px;
            border-left: 5px solid #0984e3;
        }
        h3 {
            font-size: 1.5rem;
            color: #00b894;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
            text-align: justify;
        }
        .highlight {
            background: #ffeaa7;
            padding: 15px;
            border-left: 4px solid #fdcb6e;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2rem;
            margin-right: 5px;
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .image-container img {
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            max-width: 800px;
            margin: 0 auto;
        }
        .image-container figcaption {
            font-style: italic;
            color: #636e72;
            margin-top: 10px;
        }
        .interaction {
            background: #f1f2f6;
            padding: 30px;
            border-radius: 10px;
            margin: 40px 0;
        }
        .interaction h2 {
            text-align: center;
            border: none;
            padding-left: 0;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .rating {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
        }
        .rating input {
            display: none;
        }
        .rating label {
            font-size: 1.5rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.3s;
        }
        .rating input:checked ~ label,
        .rating label:hover,
        .rating label:hover ~ label {
            color: #ff9f43;
        }
        button[type="submit"] {
            background: #00b894;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s;
        }
        button[type="submit"]:hover {
            background: #00a085;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 15px;
            padding: 30px 0;
            border-top: 2px solid #ddd;
            border-bottom: 2px solid #ddd;
            margin: 30px 0;
        }
        .web-link {
            background: #0984e3;
            color: white;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background: #0770c4;
        }
        .web-link a {
            color: white;
            font-weight: bold;
        }
        footer {
            background: #2d3436;
            color: white;
            padding: 30px 0;
            text-align: center;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
        .social-icons {
            display: flex;
            gap: 20px;
        }
        .social-icons a {
            color: white;
            font-size: 1.5rem;
            transition: color 0.3s;
        }
        .social-icons a:hover {
            color: #ff9f43;
        }
        @media (max-width: 1024px) {
            .web-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .nav-mobile.active {
                display: flex;
            }
            .search-box input {
                width: 150px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .search-box {
                order: 3;
                width: 100%;
                margin-top: 15px;
            }
            .search-box input {
                width: 100%;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
