        .conts { background: #f5f7fa; }
        .seo-landing-page {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 20px 40px;
        }
        .seo-hero, .seo-section {
            background: #fff;
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 20px;
        }
        .seo-hero {
            text-align: center;
            padding: 30px 30px;
        }
        .seo-section-alt {
            background: #fff;
        }
        .seo-section-Questions {
            background: #fff;
			margin-bottom: 0px;
        }
        .seo-breadcrumb {
            font-size: 13px;
            color: #999;
            margin-bottom: 20px;
        }
        .seo-breadcrumb a {
            color: #1e9fff;
            text-decoration: none;
            margin: 0 8px;
        }
        .seo-breadcrumb a:first-child {
            margin-left: 0;
        }
        .seo-breadcrumb span {
            margin: 0 8px;
        }
        .seo-hero h1 {
            font-size: 28px;
            color: #333;
            margin: 0 0 20px;
            font-weight: 600;
        }
        .seo-section h2 {
            font-size: 22px;
            color: #333;
            margin: 0 0 20px;
            text-align: center;
            font-weight: 600;
        }
        .seo-intro {
            font-size: 15px;
            color: #666;
            line-height: 2;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        .seo-section > p {
            font-size: 15px;
            color: #666;
            line-height: 1.8;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 25px;
        }
        .seo-actions {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }
        .seo-btn {
            display: inline-block;
            padding: 10px 28px;
            border-radius: 6px;
            font-size: 14px;
            text-decoration: none;
            background: #f0f0f0;
            color: #333;
            border: 1px solid #ddd;
            transition: all 0.3s;
        }
        .seo-btn:hover {
            background: #e8e8e8;
        }
        .seo-btn-primary {
            background: #1e9fff;
            color: #fff;
            border-color: #1e9fff;
        }
        .seo-btn-primary:hover {
            background: #0d8adf;
        }
        .seo-points {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 12px;
        }
        .seo-points li {
            padding: 10px 22px;
            background: #f0f8ff;
            border-radius: 20px;
            color: #555;
            font-size: 14px;
            border: 1px solid #d0e8ff;
        }
        .seo-points li:before {
            content: "✓ ";
            color: #1e9fff;
            font-weight: bold;
        }
        .seo-grid {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }
        .seo-card {
            flex: 1 1 280px;
            background: #fff;
            padding: 28px;
            border-radius: 10px;
            border: 1px solid #e8e8e8;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
            transition: all 0.3s;
        }
        .seo-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .seo-card h3 {
            font-size: 18px;
            color: #1e9fff;
            margin: 0 0 12px;
            font-weight: 600;
        }
        .seo-card > p {
            font-size: 14px;
            color: #666;
            line-height: 1.8;
            margin: 0;
        }
        .seo-link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 16px;
        }
        .seo-link-list a {
            display: inline-block;
            padding: 6px 14px;
            background: #f0f8ff;
            color: #1e9fff;
            border-radius: 4px;
            font-size: 13px;
            text-decoration: none;
            border: 1px solid #c8e4ff;
            transition: all 0.3s;
        }
        .seo-link-list a:hover {
            background: #1e9fff;
            color: #fff;
        }
        .seo-keyword-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
        }
        .seo-keyword-chip {
            display: inline-block;
            padding: 8px 20px;
            background: #1e9fff;
            color: #fff;
            border-radius: 20px;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s;
        }
        .seo-keyword-chip:hover {
            background: #0d8adf;
            transform: translateY(-2px);
        }
        .seo-faq-list {
            max-width: 100%;
            margin: 0 auto;
        }
        .seo-faq-item {
            background: #f8fafc;
            border-radius: 8px;
            margin-bottom: 12px;
            border: 1px solid #e8e8e8;
            overflow: hidden;
        }
        .seo-faq-q {
            padding: 15px 20px;
            font-size: 15px;
            color: #333;
            cursor: pointer;
            font-weight: 500;
            list-style: none;
        }
        .seo-faq-q::-webkit-details-marker {
            display: none;
        }
        .seo-faq-q:before {
            content: "Q: ";
            color: #1e9fff;
            font-weight: 600;
        }
        .seo-faq-item[open] .seo-faq-q {
            color: #1e9fff;
        }
        .seo-faq-a {
            padding: 0 20px 15px;
            font-size: 14px;
            color: #666;
            line-height: 1.8;
        }
        @media (max-width: 768px) {
            .seo-landing-page {
                padding: 15px 12px 30px;
            }
            .seo-hero, .seo-section {
                padding: 25px 20px;
                margin-bottom: 15px;
                border-radius: 10px;
            }
            .seo-hero h1 {
                font-size: 22px;
            }
            .seo-section h2 {
                font-size: 18px;
            }
            .seo-card {
                padding: 20px;
            }
            .seo-btn {
                padding: 8px 20px;
                font-size: 13px;
            }
        }