
    .seo-section {
        max-width: 1400px;
        margin: 80px auto;
        padding: 100px 40px;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        border-radius: 50px;
        box-shadow: 
            0 40px 120px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
        color: #333;
        margin-top: 900px;
        border: 1px solid rgba(0, 191, 255, 0.2);
        position: relative;
        overflow: hidden;
    }

    .seo-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #00bfff, #009acd, #00bfff);
    }

    .seo-heading {
        font-size: 52px;
        font-weight: 900;
        text-align: center;
        margin-bottom: 25px;
        background: linear-gradient(135deg, #00bfff 0%, #009acd 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1.2;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .seo-subheading {
        font-size: 32px;
        color: #009acd;
        text-align: center;
        margin-bottom: 50px;
        font-weight: 600;
        text-shadow: 0 0 20px rgba(0, 191, 255, 0.2);
    }

    .seo-paragraph {
        font-size: 19px;
        line-height: 2;
        margin-bottom: 30px;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
        text-align: justify;
        color: #444;
        font-weight: 400;
    }

    .hero-section {
        text-align: center;
        margin-bottom: 80px;
        position: relative;
    }

    .crypto-image {
        display: block;
        margin: 60px auto;
        max-width: 100%;
        border-radius: 30px;
        box-shadow: 0 25px 80px rgba(0, 191, 255, 0.15);
        transition: transform 0.4s ease;
        border: 3px solid rgba(0, 191, 255, 0.1);
    }

    .crypto-image:hover {
        transform: scale(1.02);
        box-shadow: 0 30px 100px rgba(0, 191, 255, 0.25);
    }

    .stats-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin: 60px 0;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

    .stat-card {
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        border-radius: 25px;
        padding: 40px 30px;
        text-align: center;
        border: 2px solid rgba(0, 191, 255, 0.2);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .stat-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0, 191, 255, 0.1), transparent);
        transition: left 0.6s ease;
    }

    .stat-card:hover::before {
        left: 100%;
    }

    .stat-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(0, 191, 255, 0.2);
        border-color: rgba(0, 191, 255, 0.4);
        background: linear-gradient(135deg, #ffffff 0%, #e6f7ff 100%);
    }

    .stat-number {
        font-size: 48px;
        font-weight: 900;
        color: #00bfff;
        margin-bottom: 10px;
        text-shadow: 0 2px 4px rgba(0, 191, 255, 0.3);
    }

    .stat-label {
        font-size: 18px;
        color: #555;
        font-weight: 500;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 35px;
        margin: 60px 0;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

    .feature-card {
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        border-radius: 30px;
        padding: 40px 30px;
        text-align: center;
        transition: all 0.4s ease;
        border: 2px solid rgba(0, 191, 255, 0.15);
        position: relative;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }

    .feature-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(0, 191, 255, 0.08) 0%, transparent 50%, rgba(0, 191, 255, 0.03) 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .feature-card:hover::after {
        opacity: 1;
    }

    .feature-card:hover {
        transform: translateY(-12px) scale(1.02);
        box-shadow: 0 25px 80px rgba(0, 191, 255, 0.2);
        border-color: rgba(0, 191, 255, 0.3);
        background: linear-gradient(135deg, #ffffff 0%, #e6f7ff 100%);
    }

    .feature-icon {
        font-size: 56px;
        margin-bottom: 20px;
        display: block;
        filter: drop-shadow(0 0 15px rgba(0, 191, 255, 0.3));
    }

    .feature-title {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 15px;
        color: #333;
    }

    .feature-desc {
        font-size: 18px;
        line-height: 1.8;
        color: #555;
    }

    .section-title {
        font-size: 38px;
        text-align: center;
        margin: 80px 0 50px;
        color: #333;
        font-weight: 700;
        position: relative;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: linear-gradient(90deg, #00bfff, #009acd);
        border-radius: 2px;
    }

    .step-by-step {
        max-width: 900px;
        margin: 60px auto;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        border-radius: 30px;
        padding: 50px 40px;
        border: 2px solid rgba(0, 191, 255, 0.2);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    }

    .step-item {
        display: flex;
        align-items: center;
        margin-bottom: 30px;
        padding: 25px;
        background: rgba(0, 191, 255, 0.05);
        border-radius: 20px;
        transition: all 0.3s ease;
        border: 1px solid rgba(0, 191, 255, 0.1);
    }

    .step-item:hover {
        background: rgba(0, 191, 255, 0.08);
        transform: translateX(10px);
        box-shadow: 0 10px 30px rgba(0, 191, 255, 0.15);
    }

    .step-number {
        font-size: 32px;
        font-weight: 900;
        color: #00bfff;
        margin-right: 25px;
        min-width: 60px;
        text-align: center;
        text-shadow: 0 2px 4px rgba(0, 191, 255, 0.3);
    }

    .step-content {
        flex: 1;
    }

    .step-title {
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 8px;
        color: #333;
    }

    .step-desc {
        font-size: 17px;
        color: #555;
        line-height: 1.6;
    }

    .tips-section {
        max-width: 1000px;
        margin: 60px auto;
    }

    .tip-item {
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        border-radius: 20px;
        padding: 25px 30px;
        margin-bottom: 20px;
        border-left: 4px solid #00bfff;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(0, 191, 255, 0.1);
    }

    .tip-item:hover {
        transform: translateX(8px);
        box-shadow: 0 15px 40px rgba(0, 191, 255, 0.2);
        background: linear-gradient(135deg, #ffffff 0%, #e6f7ff 100%);
    }

    .tip-text {
        font-size: 18px;
        color: #444;
        line-height: 1.7;
        font-weight: 400;
    }

    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
        margin: 60px 0;
    }

    .testimonial-card {
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        border-radius: 25px;
        padding: 35px 30px;
        border: 2px solid rgba(0, 191, 255, 0.15);
        transition: all 0.4s ease;
        position: relative;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }

    .testimonial-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 70px rgba(0, 191, 255, 0.2);
        background: linear-gradient(135deg, #ffffff 0%, #e6f7ff 100%);
    }

    .testimonial-header {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }

    .testimonial-avatar {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: linear-gradient(135deg, #00bfff, #009acd);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        margin-right: 20px;
        color: #fff;
        box-shadow: 0 5px 15px rgba(0, 191, 255, 0.3);
    }

    .testimonial-info h4 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 5px;
        color: #333;
    }

    .testimonial-info p {
        font-size: 14px;
        color: #666;
    }

    .testimonial-text {
        font-size: 17px;
        line-height: 1.7;
        color: #555;
        font-style: italic;
    }

    .faq-section {
        max-width: 1000px;
        margin: 80px auto;
    }

    .faq-item {
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        border-radius: 20px;
        margin-bottom: 25px;
        border: 2px solid rgba(0, 191, 255, 0.15);
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .faq-item:hover {
        border-color: rgba(0, 191, 255, 0.3);
        box-shadow: 0 15px 40px rgba(0, 191, 255, 0.2);
        background: linear-gradient(135deg, #ffffff 0%, #e6f7ff 100%);
    }

    .faq-question {
        font-size: 22px;
        font-weight: 600;
        padding: 30px;
        margin: 0;
        color: #333;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
    }

    .faq-question:hover {
        background: rgba(0, 191, 255, 0.08);
        color: #00bfff;
    }

    .faq-answer {
        font-size: 18px;
        line-height: 1.8;
        padding: 0 30px 30px;
        color: #555;
        border-top: 1px solid rgba(0, 191, 255, 0.1);
    }

    .cta-section {
        text-align: center;
        margin: 100px 0 60px;
        padding: 60px 40px;
        background: linear-gradient(135deg, #e6f7ff 0%, #f0f9ff 100%);
        border-radius: 40px;
        border: 2px solid rgba(0, 191, 255, 0.2);
        box-shadow: 0 25px 80px rgba(0, 191, 255, 0.15);
    }

    .cta-title {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 25px;
        color: #333;
    }

    .cta-subtitle {
        font-size: 20px;
        color: #555;
        margin-bottom: 40px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-btn {
        background: linear-gradient(135deg, #00bfff 0%, #009acd 100%);
        border: none;
        color: #fff;
        padding: 20px 60px;
        font-size: 24px;
        font-weight: 600;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.4s ease;
        box-shadow: 0 15px 40px rgba(0, 191, 255, 0.3);
        position: relative;
        overflow: hidden;
    }

    .cta-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.6s ease;
    }

    .cta-btn:hover::before {
        left: 100%;
    }

    .cta-btn:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 25px 60px rgba(0, 191, 255, 0.4);
    }

    .security-features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin: 60px 0;
    }

    .security-card {
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        border-radius: 25px;
        padding: 35px 25px;
        text-align: center;
        border: 2px solid rgba(0, 191, 255, 0.15);
        transition: all 0.4s ease;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }

    .security-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 70px rgba(0, 191, 255, 0.2);
        border-color: rgba(0, 191, 255, 0.3);
        background: linear-gradient(135deg, #ffffff 0%, #e6f7ff 100%);
    }

    .security-icon {
        font-size: 48px;
        margin-bottom: 20px;
        filter: drop-shadow(0 0 15px rgba(0, 191, 255, 0.3));
    }

    .security-title {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 15px;
        color: #333;
    }

    .security-desc {
        font-size: 16px;
        line-height: 1.7;
        color: #555;
    }

    @media (max-width: 768px) {
        .seo-section {
            padding: 60px 20px;
            margin: 40px auto;
        }
        
        .seo-heading {
            font-size: 36px;
        }
        
        .seo-subheading {
            font-size: 24px;
        }
        
        .seo-paragraph {
            font-size: 16px;
        }
        
        .section-title {
            font-size: 28px;
        }
        
        .cta-title {
            font-size: 32px;
        }
        
        .cta-btn {
            font-size: 20px;
            padding: 18px 40px;
        }
        
        .features-grid,
        .testimonials-grid,
        .security-features {
            grid-template-columns: 1fr;
        }
        
        .stats-container {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 480px) {
        .stats-container {
            grid-template-columns: 1fr;
        }
        
        .step-item {
            flex-direction: column;
            text-align: center;
        }
        
        .step-number {
            margin-right: 0;
            margin-bottom: 15px;
        }
    }







    .seo-list {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 25px;
}

.seo-list li {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-left: 5px solid #00bfff;
  padding: 20px 25px;
  font-size: 18px;
  color: #444;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 191, 255, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.seo-list li::before {
  content: \"✔\";
  color: #00bfff;
  font-weight: bold;
  margin-right: 10px;
}

.seo-list li:hover {
  background: linear-gradient(135deg, #ffffff 0%, #e6f7ff 100%);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 191, 255, 0.15);
}



.social-share {
  margin-top: 20px;
  font-weight: bold;
}
.social-share a {
  margin: 0 10px;
  text-decoration: none;
  color: #0056b3;
}
.social-share a:hover {
  text-decoration: underline;
}
