        * {
            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: #f8f9fa;
        }
        a {
            text-decoration: none;
            color: #d4af37;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #b8941f;
        }
        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-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(90deg, #d4af37, #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .logo a {
            background: none;
            -webkit-text-fill-color: unset;
        }
        .nav-container {
            display: flex;
            align-items: center;
        }
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-menu li a {
            color: #fff;
            font-weight: 500;
            padding: 10px 15px;
            border-radius: 5px;
            transition: background 0.3s ease;
        }
        .nav-menu li a:hover {
            background: rgba(212, 175, 55, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #fff;
        }
        .breadcrumb {
            margin-top: 20px;
            font-size: 0.9rem;
            color: #ccc;
        }
        .breadcrumb a {
            color: #ccc;
        }
        .breadcrumb a:hover {
            color: #d4af37;
        }
        main {
            padding: 40px 0;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-top: 20px;
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 2px solid #f0f0f0;
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: #1a1a2e;
            margin-bottom: 15px;
        }
        .article-meta {
            color: #666;
            font-size: 0.95rem;
        }
        .content-section {
            margin-bottom: 40px;
            padding: 0 20px;
        }
        h2, h3 {
            color: #16213e;
            margin-bottom: 20px;
            line-height: 1.4;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid #d4af37;
            padding-left: 15px;
            margin-top: 40px;
        }
        h3 {
            font-size: 1.8rem;
            margin-top: 30px;
            color: #1a1a2e;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
            color: #444;
        }
        .highlight {
            background: #fff9e6;
            padding: 20px;
            border-left: 4px solid #d4af37;
            margin: 25px 0;
            border-radius: 5px;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .image-container img {
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            margin: 0 auto;
        }
        .image-caption {
            margin-top: 10px;
            font-style: italic;
            color: #666;
            font-size: 0.95rem;
        }
        .link-inline {
            font-weight: bold;
            color: #1a1a2e;
            text-decoration: underline;
        }
        .link-inline:hover {
            color: #d4af37;
        }
        .feature-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .feature-item {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }
        .feature-item:hover {
            transform: translateY(-5px);
        }
        .feature-item i {
            font-size: 2.5rem;
            color: #d4af37;
            margin-bottom: 15px;
        }
        .feature-item h4 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #16213e;
        }
        .form-section {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 10px;
            margin: 40px 0;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            border-color: #d4af37;
            outline: none;
        }
        button {
            background: linear-gradient(135deg, #d4af37, #b8941f);
            color: #fff;
            border: none;
            padding: 15px 30px;
            border-radius: 5px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        button:hover {
            background: linear-gradient(135deg, #b8941f, #9a7c18);
        }
        .star-rating {
            display: flex;
            gap: 10px;
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
        }
        .star-rating .star {
            transition: color 0.3s ease;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: #ffd700;
        }
        .internal-links {
            margin: 50px 0;
            padding: 30px;
            background: #16213e;
            border-radius: 10px;
            color: #fff;
        }
        .internal-links h2 {
            color: #fff;
            border-left: 5px solid #d4af37;
            padding-left: 15px;
            margin-bottom: 30px;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 5px;
            transition: background 0.3s ease;
        }
        .web-link:hover {
            background: rgba(212, 175, 55, 0.2);
        }
        .web-link a {
            color: #fff;
            font-weight: 500;
        }
        footer {
            background: #1a1a2e;
            color: #ccc;
            padding: 40px 0 20px;
            text-align: center;
        }
        .footer-content {
            margin-bottom: 30px;
        }
        .copyright {
            font-size: 0.9rem;
            color: #999;
            border-top: 1px solid #333;
            padding-top: 20px;
        }
        @media (max-width: 992px) {
            .nav-menu {
                gap: 20px;
            }
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                align-items: flex-start;
            }
            .nav-container {
                width: 100%;
                justify-content: space-between;
                margin-top: 20px;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a1a2e;
                position: absolute;
                top: 100px;
                left: 0;
                padding: 20px;
                z-index: 1000;
                border-top: 1px solid #333;
            }
            .nav-menu.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .breadcrumb {
                margin-top: 30px;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            .feature-box {
                grid-template-columns: 1fr;
            }
            .web-links-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            .logo {
                font-size: 2rem;
            }
            .article-header h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .form-section {
                padding: 20px;
            }
        }
