.explore-prompts{
    padding: 100px 0px;
}

/*======================================
  Explore SEO
======================================*/

.explore-seo-section{
    padding:90px 0;
}

.seo-content{
    max-width:900px;
    margin:30px auto 0;
}

.seo-content p{
    margin-bottom:20px;
    line-height:1.9;
    color:var(--text-muted);
}

.seo-highlights{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:50px;
}

.highlight-item{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    padding:20px;
    background:var(--card);
    border:1px solid var(--border);
    border-radius:18px;
    box-shadow:var(--shadow-sm);
    transition:.3s;
}

.highlight-item:hover{
    transform:translateY(-4px);
}

.highlight-item i{
    font-size:20px;
    color:var(--primary);
}

.highlight-item span{
    font-weight:600;
}

@media (max-width:992px){

    .seo-highlights{
        grid-template-columns:repeat(2,1fr);
    }

}

@media (max-width:576px){

    .explore-seo-section{
        padding:60px 0;
    }

    .seo-highlights{
        grid-template-columns:1fr;
    }

}


.about-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow);
    line-height: 1.9;
    font-size: 16px;
    color: var(--text);
}

.about-card p {
    margin-bottom: 18px;
}

.about-card h3 {
    margin: 30px 0 15px;
}