:root {
            --primary: #1a2a3a;
            --accent: #d4a632;
            --light: #f5f0e8;
            --dark: #0d1b2a;
            --text: #2c3e50;
            --white: #ffffff;
            --shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            --radius: 12px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: var(--light);
            color: var(--text);
            line-height: 1.75;
            font-size: 16px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
            padding: 20px 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 800;
            color: var(--accent);
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        .my-logo:hover {
            color: var(--light);
        }
        .nav-desktop {
            display: flex;
            gap: 18px;
            list-style: none;
        }
        .nav-desktop li a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 6px;
            transition: background 0.3s;
        }
        .nav-desktop li a:hover {
            background: rgba(255, 255, 255, 0.15);
            color: var(--accent);
        }
        .hamburger {
            display: none;
            background: transparent;
            border: none;
            font-size: 28px;
            color: var(--accent);
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            width: 100%;
            background: var(--dark);
            flex-direction: column;
            padding: 10px 0;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: var(--white);
            text-decoration: none;
            padding: 10px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
        }
        .breadcrumb {
            background: var(--white);
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            font-size: 14px;
        }
        .breadcrumb .container {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .breadcrumb a {
            color: var(--accent);
            text-decoration: none;
        }
        .breadcrumb span {
            color: #888;
        }
        .hero {
            background: linear-gradient(135deg, var(--primary) 0%, #2d4a6e 100%);
            color: var(--white);
            padding: 50px 20px;
            text-align: center;
        }
        .hero h1 {
            font-size: 42px;
            margin-bottom: 10px;
            color: var(--accent);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        .hero p {
            font-size: 18px;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.9;
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 28px;
            }
        }
        .search-box {
            background: var(--white);
            padding: 20px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            max-width: 600px;
            margin: 30px auto;
            display: flex;
            gap: 10px;
        }
        .search-box input {
            flex: 1;
            padding: 12px;
            border: 2px solid #eee;
            border-radius: 8px;
            font-size: 16px;
        }
        .search-box button {
            background: var(--accent);
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            color: var(--dark);
            font-weight: 700;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #c89a2e;
        }
        .main-content {
            padding: 40px 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-body {
            background: var(--white);
            padding: 40px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .article-body h2 {
            font-size: 30px;
            margin: 40px 0 15px;
            color: var(--dark);
            border-left: 4px solid var(--accent);
            padding-left: 15px;
        }
        .article-body h3 {
            font-size: 24px;
            margin: 30px 0 10px;
            color: var(--primary);
        }
        .article-body h4 {
            font-size: 18px;
            margin: 20px 0 10px;
            color: var(--text);
            font-weight: 700;
        }
        .article-body p {
            margin-bottom: 16px;
        }
        .article-body ul {
            margin: 15px 0 15px 20px;
        }
        .article-body li {
            margin-bottom: 8px;
        }
        .feature-box {
            background: var(--light);
            border-left: 4px solid var(--accent);
            padding: 15px;
            margin: 20px 0;
            border-radius: 8px;
        }
        .table-wrapper {
            overflow-x: auto;
            margin: 20px 0;
        }
        .table-wrapper table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
        }
        .table-wrapper th,
        .table-wrapper td {
            border: 1px solid #ddd;
            padding: 10px;
            text-align: left;
        }
        .table-wrapper th {
            background: var(--primary);
            color: var(--white);
        }
        .table-wrapper tr:nth-child(even) {
            background: #f9f9f9;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background: var(--white);
            padding: 20px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .widget-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 15px;
            border-bottom: 2px solid var(--accent);
            padding-bottom: 5px;
        }
        .widget ul {
            list-style: none;
        }
        .widget ul li {
            margin-bottom: 10px;
        }
        .widget ul li a {
            color: var(--primary);
            text-decoration: none;
        }
        .widget ul li a:hover {
            color: var(--accent);
            text-decoration: underline;
        }
        .article-img {
            max-width: 100%;
            height: auto;
            border-radius: var(--radius);
            margin: 20px 0;
            box-shadow: var(--shadow);
        }
        .user-forms {
            background: var(--white);
            padding: 30px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin-top: 40px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 5px;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 14px;
        }
        .form-group textarea {
            height: 100px;
            resize: vertical;
        }
        .btn-submit {
            background: var(--accent);
            color: var(--dark);
            padding: 12px 30px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 700;
        }
        .btn-submit:hover {
            background: #c89a2e;
        }
        .rating-stars {
            display: flex;
            gap: 5px;
            font-size: 24px;
            color: var(--accent);
        }
        .site-footer {
            background: var(--dark);
            color: var(--white);
            padding: 40px 0;
            margin-top: 40px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }
        .footer-col h4 {
            color: var(--accent);
            margin-bottom: 15px;
            font-size: 16px;
        }
        .footer-col a {
            color: #aaa;
            text-decoration: none;
            display: block;
            margin-bottom: 8px;
        }
        .footer-col a:hover {
            color: var(--accent);
        }
        .friend-link {
            display: block;
            background: #1c2b3a;
            padding: 15px;
            border-radius: var(--radius);
            margin-top: 20px;
        }
        .friend-link a {
            color: var(--accent);
            text-decoration: none;
            margin: 0 10px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            margin-top: 30px;
            font-size: 14px;
            color: #aaa;
        }
        .last-updated {
            font-style: italic;
            color: #888;
            font-size: 14px;
        }
        @media (max-width: 768px) {
            .article-body {
                padding: 20px;
            }
            .article-body h2 {
                font-size: 22px;
            }
            .search-box {
                flex-direction: column;
            }
        }
