/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* 头部样式 */
.header {
    background-color: #ffffff;
    border-bottom: 1px solid #eaeaea;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header .container {
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.logo h1 a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo h1 a:hover {
    color: #0070f3;
}

.nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 0;
}

.nav ul li {
    margin-left: 30px;
}

.nav ul li a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav ul li a:hover {
    color: #0070f3;
}

/* 英雄区域样式 */
.hero {
    background-color: #f9f9f9;
    padding: 100px 0;
    text-align: center;
    border-bottom: 1px solid #eaeaea;
}

.hero h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
}

.hero p {
    font-size: 20px;
    color: #666;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subdescription {
    font-size: 18px;
    color: #888;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn.primary {
    background-color: #0070f3;
    color: #ffffff;
}

.btn.primary:hover {
    background-color: #0050c3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 112, 243, 0.3);
}

.btn.secondary {
    background-color: #ffffff;
    color: #333;
    border-color: #eaeaea;
}

.btn.secondary:hover {
    border-color: #0070f3;
    color: #0070f3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 112, 243, 0.1);
}

/* 用户评分样式 */
.user-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 12px;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #eaeaea;
}

.user-avatars {
    display: flex;
    align-items: center;
    gap: -10px;
    position: relative;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #f9f9f9;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.avatar:nth-child(1) {
    background-color: #0070f3;
    content: 'U';
}

.avatar:nth-child(2) {
    background-color: #f59e0b;
    content: 'S';
}

.avatar:nth-child(3) {
    background-color: #10b981;
    content: 'E';
}

.avatar:nth-child(4) {
    background-color: #8b5cf6;
    content: 'R';
}

.avatar::before {
    content: attr(aria-label);
    font-size: 16px;
    font-weight: bold;
    color: white;
}

.avatar[aria-label="User avatar 1"]::before {
    content: 'U';
}

.avatar[aria-label="User avatar 2"]::before {
    content: 'S';
}

.avatar[aria-label="User avatar 3"]::before {
    content: 'E';
}

.avatar[aria-label="User avatar 4"]::before {
    content: 'R';
}

.avatar[aria-label="Live user avatar"]::before {
    content: 'L';
}

.avatar:hover {
    transform: translateY(-3px);
}

.avatar.live {
    background-color: #0070f3;
    color: white;
}



.rating-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.rating-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    margin-right: auto;
}

.stars {
    color: #f59e0b;
    font-size: 18px;
}

.rating-value {
    font-size: 18px;
    font-weight: bold;
    color: #0070f3;
}

.user-count {
    font-size: 14px;
    color: #666;
    margin: 0 !important;
    margin-bottom: 10px !important;
    font-weight: bold;
    margin-left: auto !important;
    margin-right: auto !important;
}

.status {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #666;
    margin-left: auto;
    margin-right: auto;
}

.status span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.status .active::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #0070f3;
}

.status .verified::before {
    content: '✓';
    color: #0070f3;
    font-weight: bold;
}

.status .love::before {
    content: '❤️';
    font-weight: bold;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 112, 243, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 112, 243, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 112, 243, 0);
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .user-rating {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 15px;
    }
    
    .rating-info {
        align-items: center;
    }
    
    .avatar {
        width: 35px;
        height: 35px;
    }
}

/* 亮点区域样式 */
.highlights {
    padding: 80px 0;
    background-color: #ffffff;
}

.highlight-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.highlight-card {
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.highlight-icon {
    font-size: 32px;
    margin-bottom: 15px;
    display: block;
    text-align: center;
    color: #0070f3;
}

.highlight-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000000;
}

.highlight-card p {
    color: #666;
    font-size: 16px;
}

/* 功能概览区域样式 */
.features-overview {
    padding: 80px 0;
    background-color: #f9f9f9;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

.features-overview h3 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #000000;
}

.features-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.features-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.features-content ul {
    list-style: none;
    text-align: left;
    display: inline-block;
}

.features-content ul li {
    margin-bottom: 15px;
    color: #666;
    font-size: 16px;
    position: relative;
    padding-left: 10px;
}

.feature-icon {
    font-size: 18px;
    margin-right: 10px;
    display: inline-block;
    width: 24px;
    text-align: center;
}

.features-content ul li:before {
    content: "";
}

/* 差异对比区域样式 */
.differences {
    padding: 80px 0;
    background-color: #ffffff;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

.differences h3 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: #000000;
}

.differences-subtitle {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.differences-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.difference-item {
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.difference-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.difference-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000000;
}

.difference-item p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.difference-item p:last-child {
    margin-bottom: 0;
}

/* 能力展示区域样式 */
.capabilities {
    padding: 80px 0;
    background-color: #f9f9f9;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

.capabilities h3 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: #000000;
}

.capabilities-subtitle {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.capabilities-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.capability-item {
    padding: 30px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capability-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.capability-icon {
    font-size: 32px;
    margin-bottom: 15px;
    display: block;
    text-align: center;
    color: #0070f3;
}

.capability-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000000;
    text-align: center;
}

.capability-item p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
}

/* 用户评论区域样式 */
.testimonials {
    padding: 80px 0;
    background-color: #f9f9f9;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 112, 243, 0.05) 0%, rgba(0, 112, 243, 0) 70%);
    z-index: 0;
}

.testimonials h3 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: #000000;
}

.testimonials-subtitle {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.testimonial-card {
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 48px;
    color: rgba(0, 112, 243, 0.1);
    font-family: Georgia, serif;
    z-index: 0;
}

/* 核心功能区域样式 */
.features {
    padding: 80px 0;
    background-color: #f9f9f9;
    border-top: 1px solid #eaeaea;
}

.features h3 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #000000;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 30px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.feature-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000000;
}

.feature-card p {
    color: #666;
    font-size: 16px;
}

/* 适用场景区域样式 */
.use-cases {
    padding: 80px 0;
    background-color: #ffffff;
    border-top: 1px solid #eaeaea;
}

.use-cases h3 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #000000;
}

.use-case-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.use-case-card {
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.use-case-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000000;
}

.use-case-card p {
    color: #666;
    font-size: 16px;
}

/* 部署方法区域样式 */
.deployment {
    padding: 80px 0;
    background-color: #f9f9f9;
    border-top: 1px solid #eaeaea;
}



.deployment h3 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #000000;
}

.deployment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.deployment-method {
    padding: 30px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.deployment-method h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000000;
}

.deployment-method ul {
    list-style: none;
}

.deployment-method ul li {
    margin-bottom: 15px;
    color: #666;
    font-size: 16px;
    position: relative;
    padding-left: 20px;
}

.deployment-method ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0070f3;
    font-weight: bold;
}

.deployment-method code {
    background-color: #f0f0f0;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
}

/* 页脚样式 */
.footer {
    background-color: #f9f9f9;
    border-top: 1px solid #eaeaea;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.footer-logo h2 a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-logo h2 a:hover {
    color: #0070f3;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links ul li a {
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #0070f3;
}

.footer-social a {
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #0070f3;
}

.footer-copyright {
    text-align: center;
    color: #999;
    font-size: 14px;
    padding-top: 20px;
    border-top: 1px solid #eaeaea;
}

.footer-disclaimer {
    text-align: center;
    color: #999;
    font-size: 12px;
    padding-top: 10px;
}

/* 下载区域样式 */
.download-section {
    padding: 40px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #eaeaea;
    text-align: center;
    margin-top: -130px;
}

.download-section h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000000;
}

.download-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* 常见问题页面样式 */
.faq {
    padding: 80px 0;
    background-color: #ffffff;
}

.faq h3 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #000000;
}

.faq-categories {
    margin-bottom: 40px;
}

.faq-category {
    margin-bottom: 40px;
}

.faq-category h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000000;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 10px;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background-color: #f9f9f9;
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-question:after {
    content: "+";
    font-size: 20px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-question.active:after {
    content: "-";
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 20px;
    max-height: 200px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .container {
        width: 90%;
    }

    .nav ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .nav ul li {
        margin-left: 0;
    }

    .hero h2 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .deployment-methods {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .features h3,
    .use-cases h3,
    .deployment h3,
    .faq h3,
    .capabilities h3,
    .testimonials h3,
    .features-overview h3,
    .differences h3 {
        font-size: 28px;
    }
}

/* 返回顶部按钮样式 */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #0070f3;
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #0050c3;
    transform: translateY(-3px);
}

/* 博客详情页样式 */
.blog-detail {
    padding: 80px 0;
    background-color: #ffffff;
}

.blog-detail h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
    text-align: center;
}

.blog-meta {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
    font-size: 14px;
}

.blog-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.blog-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #000000;
}

.blog-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #000000;
}

.blog-content h5 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #000000;
}

.blog-content p {
    margin-bottom: 20px;
    color: #333;
}

.blog-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.blog-content li {
    margin-bottom: 10px;
    color: #333;
}

.blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.blog-content th,
.blog-content td {
    border: 1px solid #eaeaea;
    padding: 12px;
    text-align: left;
}

.blog-content th {
    background-color: #f9f9f9;
    font-weight: 600;
}

/* 帮助中心样式 */
.help-center {
    padding: 80px 0;
    background-color: #ffffff;
}

.help-layout {
    display: flex;
    gap: 40px;
}

.help-sidebar {
    width: 300px;
    flex-shrink: 0;
}

.help-sidebar h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000000;
}

.help-nav {
    list-style: none;
}

.help-nav-item {
    display: block;
    padding: 15px 20px;
    margin-bottom: 10px;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.help-nav-item:hover {
    background-color: #f0f0f0;
    color: #0070f3;
}

.help-nav-item.active {
    background-color: #0070f3;
    color: #ffffff;
}

.help-content {
    flex: 1;
    min-width: 0;
}

.help-article {
    display: none;
}

.help-article.active {
    display: block;
}

.help-article h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
}

.article-content {
    line-height: 1.8;
    color: #333;
}

.article-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #000000;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.article-content li {
    margin-bottom: 10px;
}

.article-content code {
    background-color: #f0f0f0;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
}

@media (max-width: 768px) {
    .help-layout {
        flex-direction: column;
    }

    .help-sidebar {
        width: 100%;
    }

    .help-nav {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        padding-bottom: 10px;
    }

    .help-nav-item {
        white-space: nowrap;
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }

    .hero h2 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .btn {
        font-size: 14px;
        padding: 10px 20px;
    }

    .highlights,
    .features-overview,
    .differences,
    .capabilities,
    .testimonials,
    .features,
    .use-cases,
    .deployment,
    .faq,
    .blog-detail,
    .help-center {
        padding: 60px 0;
    }

    .highlight-card,
    .difference-item,
    .capability-item,
    .testimonial-card,
    .feature-card,
    .use-case-card,
    .deployment-method {
        padding: 20px;
    }

    .features h3,
    .use-cases h3,
    .deployment h3,
    .faq h3,
    .capabilities h3,
    .testimonials h3,
    .features-overview h3,
    .differences h3,
    .blog-detail h2,
    .help-article h3 {
        font-size: 24px;
    }

    .blog-detail h3,
    .help-article h4 {
        font-size: 20px;
    }

    .features-content p {
        font-size: 16px;
    }

    .differences-subtitle {
        font-size: 16px;
    }

    .capabilities-subtitle,
    .testimonials-subtitle {
        font-size: 16px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}