        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f9f9f9;
            overflow-x: hidden;
        }
        a {
            color: #0066cc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff9900;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .highlight {
            background-color: #fff9d6;
            padding: 2px 5px;
            border-radius: 3px;
        }
        .section-padding {
            padding: 60px 0;
        }
        .site-header {
            background: linear-gradient(135deg, #000428 0%, #004e92 100%);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: #FFCC00;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo a:hover {
            color: #fff;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            color: #ddd;
            font-weight: 600;
            padding: 8px 0;
            position: relative;
        }
        .main-nav a:hover {
            color: #FFCC00;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #FFCC00;
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .burger {
            display: none;
            cursor: pointer;
            font-size: 1.8rem;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 12px 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin: 0 10px;
            color: #888;
        }
        .breadcrumb a {
            color: #555;
        }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.2rem; }
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 40px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        .article-content h2 {
            color: #004e92;
            margin-top: 40px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #FFCC00;
        }
        .article-content h3 {
            color: #333;
            margin-top: 30px;
            margin-bottom: 15px;
        }
        .article-content p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
        }
        .article-content ul, .article-content ol {
            margin-left: 30px;
            margin-bottom: 1.5em;
        }
        .article-content blockquote {
            border-left: 5px solid #FFCC00;
            padding-left: 20px;
            margin: 30px 0;
            font-style: italic;
            color: #555;
            background: #f8f9fa;
            padding: 20px;
            border-radius: 0 10px 10px 0;
        }
        .feature-img {
            margin: 30px 0;
            border: 5px solid #FFCC00;
            border-radius: 10px;
            overflow: hidden;
        }
        .sidebar {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .sidebar h3 {
            color: #004e92;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #FFCC00;
        }
        .search-box input {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #ddd;
            border-radius: 30px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .search-box input:focus {
            outline: none;
            border-color: #0066cc;
        }
        .search-box button {
            width: 100%;
            margin-top: 10px;
            padding: 12px;
            background: #004e92;
            color: white;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #0066cc;
        }
        .comment-form, .rating-form {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 10px;
            margin-top: 30px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-family: inherit;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            margin-bottom: 15px;
        }
        .stars .star:hover,
        .stars .star.active {
            color: #FFCC00;
        }
        .submit-btn {
            background: #28a745;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 5px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s;
        }
        .submit-btn:hover {
            background: #218838;
        }
        .footer-links {
            background: #e9ecef;
            padding: 40px 0;
        }
        .web-link {
            display: inline-block;
            margin: 10px 20px 10px 0;
            padding: 10px 20px;
            background: white;
            border-radius: 30px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .site-footer {
            background: #000428;
            color: #aaa;
            padding: 40px 0 20px;
        }
        .footer-container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h4 {
            color: #FFCC00;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section ul li {
            margin-bottom: 10px;
        }
        .footer-section a {
            color: #ccc;
        }
        .footer-section a:hover {
            color: #FFCC00;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #333;
            font-size: 0.9rem;
            color: #888;
        }
        @media (max-width: 768px) {
            .burger {
                display: block;
            }
            .main-nav ul {
                position: fixed;
                top: 70px;
                right: -100%;
                flex-direction: column;
                background: #000428;
                width: 80%;
                height: calc(100vh - 70px);
                padding: 30px;
                transition: right 0.5s ease;
                box-shadow: -5px 0 15px rgba(0,0,0,0.2);
            }
            .main-nav.active ul {
                right: 0;
            }
            .section-padding {
                padding: 40px 0;
            }
            .article-content {
                padding: 25px;
            }
        }
