* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            /* background-color: #000;
            color: #fff; */
        }

        /* Header Styles */
        header {
            background-color: #000;
            padding: 20px 40px;
            border-bottom: 1px solid #333;
        }

        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .logo {
            width: 120px;
            height: auto;
        }

        .header-links {
            display: flex;
            gap: 25px;
            font-size: 14px;
        }

        .header-links a {
            color: #ccc;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .header-links a:hover {
            color: #76b900;
        }

        .search-bar {
            margin-top: 15px;
        }

        .search-bar input {
            width: 100%;
            max-width: 400px;
            padding: 10px 15px;
            background-color: #1a1a1a;
            border: 1px solid #333;
            border-radius: 5px;
            color: #fff;
            font-size: 14px;
        }

        /* Breadcrumb */
        .breadcrumb {
            padding: 15px 40px;
            font-size: 14px;
            color: #999;
        }

        .breadcrumb a {
            color: #999;
            text-decoration: none;
        }

        .breadcrumb a:hover {
            color: #76b900;
        }

        /* Main Content */
        .container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 40px;
        }

        .blog-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .blog-label {
            font-size: 12px;
            letter-spacing: 3px;
            color: #999;
            margin-bottom: 20px;
        }

        .share-btn {
            float: right;
            background-color: transparent;
            border: 1px solid #666;
            color: #fff;
            padding: 8px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 14px;
        }

        .share-btn:hover {
            background-color: #333;
        }

        h1 {
            font-size: 48px;
            line-height: 1.2;
            margin-bottom: 25px;
            font-weight: bold;
        }

        .subtitle {
            font-size: 20px;
            color: #ccc;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .meta {
            font-size: 14px;
            color: #999;
            margin-bottom: 40px;
        }

        .featured-image {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin-top: 30px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            header {
                padding: 15px 20px;
            }

            .header-top {
                flex-direction: column;
                gap: 15px;
            }

            .header-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
            }

            .breadcrumb {
                padding: 10px 20px;
                font-size: 12px;
            }

            .container {
                padding: 0 20px;
                margin: 20px auto;
            }

            h1 {
                font-size: 32px;
            }

            .subtitle {
                font-size: 18px;
            }

            .share-btn {
                float: none;
                display: block;
                margin: 0 auto 20px;
            }
        }

        @media (max-width: 480px) {
            .logo {
                width: 100px;
            }

            h1 {
                font-size: 26px;
            }

            .subtitle {
                font-size: 16px;
            }

            .header-links {
                font-size: 12px;
                gap: 10px;
            }
        }

        /* Tags Section */
.tags-section {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 40px 0;
    padding: 20px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.tag {
    background-color: #1a1a1a;
    border: 1px solid #333;
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 13px;
    color: #ccc;
    white-space: nowrap;
}

/* Article Content */
.article-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.article-content p {
    margin-bottom: 20px;
    color: #ddd;
    font-size: 16px;
}

.article-content h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    text-align: center;
}

.article-content strong {
    color: #fff;
}

/* Video Section */
.video-container {
    margin: 40px 0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #000;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

/* Key Features Section */
.key-features-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.key-features-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: #000;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    margin-bottom: 25px;
    padding-left: 25px;
    position: relative;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

.features-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
    font-size: 20px;
}

.features-list li strong {
    color: #000;
    font-weight: 600;
}

/* Wide Tuning Section */
.wide-tuning-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.wide-tuning-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
    color: #000;
}

.wide-tuning-section p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

/* Responsive */
@media (max-width: 768px) {
    .key-features-section h2,
    .wide-tuning-section h2 {
        font-size: 26px;
    }
    
    .features-list li,
    .wide-tuning-section p {
        font-size: 15px;
    }
}

/* Channel Count Section */
.channel-count-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.channel-count-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #000;
}

.channel-count-section p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
    text-align: center;
}

.channel-count-section a {
    color: #000;
    text-decoration: underline;
}

.channel-count-section a:hover {
    color: #76b900;
}

.section-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 8px;
    margin: 30px auto;
    display: block;
}

/* Reliability Section */
.reliability-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.reliability-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #000;
}

.reliability-section p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
}

.reliability-section a {
    color: #000;
    text-decoration: underline;
}

.reliability-section a:hover {
    color: #76b900;
}

/* Ready for More Section */
.ready-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.ready-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #000;
    text-align: center;
}

.ready-section p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.learn-more {
    margin-top: 30px;
}

.learn-more a {
    color: #000;
    text-decoration: underline;
    font-weight: 600;
}

.learn-more a:hover {
    color: #76b900;
}

/* Responsive */
@media (max-width: 768px) {
    .channel-count-section h2,
    .reliability-section h2,
    .ready-section h2 {
        font-size: 26px;
    }
    
    .channel-count-section p,
    .reliability-section p,
    .ready-section p {
        font-size: 15px;
    }
}

/* Related Products Section */
.related-products-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.related-products-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #000;
}

.product-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: #f5f5f5;
    padding: 40px;
    border-radius: 8px;
}

.product-image {
    width: 250px;
    height: auto;
}

.product-info h3 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}

.product-info p {
    font-size: 18px;
    color: #666;
}

.related-stories-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 40px 40px 0;
    border-top: 2px solid #e0e0e0;
}

.stories-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.stories-header h2 {
    font-size: 36px;
    color: #000;
}

.view-all-btn {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 3px solid #76b900;
    padding-bottom: 5px;
}

.view-all-btn:hover {
    color: #76b900;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.story-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.story-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.story-content {
    padding: 25px;
}

.story-content h3 {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #000;
}

.story-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-article-btn {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 2px solid #76b900;
    padding-bottom: 3px;
    display: inline-block;
}

.read-article-btn:hover {
    color: #76b900;
}

/* Responsive */
@media (max-width: 1024px) {
    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-card {
        flex-direction: column;
        text-align: center;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .stories-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .related-products-section h2,
    .stories-header h2 {
        font-size: 28px;
    }
}

/* Footer Styles */
.footer {
    background-color: #000;
    color: #fff;
    padding: 60px 40px 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Newsletter Section */
.footer-newsletter {
    margin-bottom: 50px;
}

.footer-logo {
    width: 140px;
    height: auto;
    margin-bottom: 30px;
}

.newsletter-box {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 8px;
    max-width: 400px;
}

.newsletter-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.newsletter-box p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.newsletter-btn {
    background-color: #76b900;
    color: #000;
    border: none;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-btn:hover {
    background-color: #68a500;
}

/* Footer Links Grid */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #76b900;
}

/* Social Media Icons */
.footer-social {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.social-icon {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s;
}

.social-icon:hover {
    filter: brightness(0) invert(1) sepia(1) hue-rotate(50deg) saturate(5);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    font-size: 13px;
    color: #666;
}

.footer-legal {
    display: flex;
    gap: 10px;
}

.footer-legal a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: #76b900;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 20px;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-social {
        flex-wrap: wrap;
    }
}