        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        ul {
            list-style: none;
        }
        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, #1a1a2e, #16213e);
            color: #fff;
            padding: 20px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #00ff88;
            text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
        }
        .logo:hover {
            color: #00cc6a;
        }
        .nav-main {
            display: flex;
            gap: 30px;
        }
        .nav-main a {
            font-size: 1.1rem;
            font-weight: 500;
            padding: 8px 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .nav-main a:hover {
            background-color: #00ff88;
            color: #16213e;
        }
        .breadcrumb {
            margin-top: 15px;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #00ff88;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #00ff88;
        }
        #nav-toggle {
            display: none;
        }
        main {
            padding: 40px 0;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin: 20px auto;
        }
        article {
            padding: 0 30px;
        }
        h1 {
            font-size: 2.8rem;
            color: #1a1a2e;
            margin-bottom: 20px;
            line-height: 1.2;
            text-align: center;
        }
        h2 {
            font-size: 2rem;
            color: #16213e;
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 3px solid #00ff88;
        }
        h3 {
            font-size: 1.5rem;
            color: #0f3460;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
            line-height: 1.8;
        }
        .highlight {
            background-color: #e6fff3;
            padding: 15px;
            border-left: 5px solid #00ff88;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2rem;
            margin-right: 5px;
        }
        .featured-image {
            margin: 30px auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            max-width: 800px;
        }
        .featured-image img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .featured-image img:hover {
            transform: scale(1.03);
        }
        .form-section {
            background-color: #f1f8ff;
            padding: 30px;
            border-radius: 10px;
            margin: 40px 0;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
        }
        .form-section h2 {
            border-bottom: none;
            color: #0f3460;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            max-width: 600px;
            margin: 0 auto;
        }
        input, textarea, select {
            padding: 15px;
            border: 2px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            border-color: #00ff88;
            outline: none;
        }
        button {
            padding: 15px 30px;
            background: linear-gradient(to right, #00ff88, #00cc6a);
            color: #16213e;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        button:hover {
            background: linear-gradient(to right, #00cc6a, #00a852);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(0, 204, 106, 0.3);
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            justify-content: center;
            font-size: 2rem;
            color: #ffcc00;
            margin-bottom: 20px;
        }
        .rating-stars i {
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .rating-stars i:hover {
            color: #ff9900;
        }
        footer {
            background-color: #1a1a2e;
            color: #fff;
            padding: 40px 0 20px;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
            margin-bottom: 30px;
        }
        .web-link {
            background-color: #0f3460;
            padding: 15px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background-color: #00ff88;
            color: #16213e;
            transform: translateY(-5px);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 992px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .nav-main {
                flex-direction: column;
                width: 100%;
                display: none;
                margin-top: 20px;
            }
            #nav-toggle:checked + .nav-main {
                display: flex;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 30px;
                right: 20px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .web-links {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
        }
        @media (max-width: 768px) {
            article {
                padding: 0 15px;
            }
            .form-section {
                padding: 20px;
            }
            .featured-image {
                margin: 20px auto;
            }
            .rating-stars {
                font-size: 1.5rem;
            }
        }
        .text-center {
            text-align: center;
        }
        .bold {
            font-weight: 700;
            color: #0f3460;
        }
        .italic {
            font-style: italic;
        }
