/* SEO Section */
.seo-section {
  padding: 80px 20px;
  background: white;
}

/* SEO Content Wrapper - Two Column Layout */
.seo-content-wrapper {
      display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px;
    gap: 40px;
    max-width: 1200px;
    margin: 30px auto 0;
    max-height: 900px;
    overflow-y: auto;
    padding-bottom: 50px;
    padding-right: 14px;
}

/* Full Column Layout for Single Card */
.seo-content-wrapper.fullCol {
  grid-template-columns: 1fr;
}
/* Webkit browsers (Chrome, Safari, Edge) */
.seo-content-wrapper::-webkit-scrollbar {
  width: 6px;                  /* Very thin – matches your image */
  height: 6px;
}

.seo-content-wrapper::-webkit-scrollbar-track {
 background: #E9F4FF;     /* Fully transparent track */
  border-radius: 10px;
}

.seo-content-wrapper::-webkit-scrollbar-thumb {
  background: #0554E6;        /* Very light blue-gray when inactive */
  border-radius: 10px;
  transition: background 0.2s ease;
}

.seo-content-wrapper::-webkit-scrollbar-thumb:hover,
.seo-content-wrapper::-webkit-scrollbar-thumb:active {
  background: #0554E6         /* Bright blue when hovering or scrolling (exactly like your image) */
}

/* Optional: make corner fully clean */
.seo-content-wrapper::-webkit-scrollbar-corner {
  background: #E9F4FF;
}
/* SEO Column */
.seoCol {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* SEO Card */
.seoCard {
  background: white;
  padding: 27px 30px;
  border-radius: 20px;
border: 1px solid #DEEDFF;
  transition: all 0.3s ease;
}

.seoCard:hover {
  box-shadow: 0 8px 24px rgba(6, 84, 230, 0.12);
}

/* SEO Card Heading (h2) */
.seoCard h2 {
  
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: #464860;
  margin-bottom: 20px;
   text-align: left;
}

/* SEO Card Content */
.seoCard-content {
  
  font-weight: 400;
  font-size: 13px;
  line-height: 180%;
  color: #60738A;
}

/* Styling for content within seoCard */
.seoCard-content p {
    font-size: 14px;
    margin: 0 0 12px 0;
    font-weight: 400
}
.seoCard-content h3{
    
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #464860;
  margin-bottom: 15px;
   text-align: left;
}
.seoCard-content p:last-child {
  margin-bottom: 0;
}

.seoCard-content strong {
  font-weight: 500;
  color: #464860;
}

.seoCard-content ul,
.seoCard-content ol {
  margin: 16px 0;
  padding-left: 24px;
}

.seoCard-content li {
  margin-bottom: 8px;
}

.seoCard-content a {
  color: #0654E6;
  text-decoration: none;
  transition: all 0.3s ease;
}

.seoCard-content a:hover {
  text-decoration: underline;
}

/* Table Styling within SEO Content */
.seoCard-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  
  font-size: 13px;
  background: white;
}

.seoCard-content table thead {
  background: #F8FCFF;
}

.seoCard-content table th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 500;
  font-size: 13px;
  color: #464860;
  border-bottom: 1px solid #E5E7EB;
}

.seoCard-content table th:first-child {
  color: #60738A;
  font-weight: 400;
}

.seoCard-content table td {
  padding: 12px 16px;
  text-align: left;
  color: #60738A;
  border-bottom: 1px solid #F0F4F8;
  line-height: 180%;
}

.seoCard-content table td:first-child {
  color: #60738A;
  font-weight: 400;
}

.seoCard-content table tbody tr:last-child td {
  border-bottom: none;
}

.seoCard-content table tbody tr:hover {
  background: #FAFBFC;
}

/* Responsive Design */
@media (max-width: 968px) {
  .seo-content-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 60px;
  }

  .seoCol {
    gap: 30px;
  }

  .seoCard h2 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .seo-section {
    padding: 60px 20px;
  }

  .seo-content-wrapper {
    gap: 24px;
    margin-top: 50px;
  }

  .seoCol {
    gap: 24px;
  }

  .seoCard h2 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .seoCard-content {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .seo-section {
    padding: 40px 16px;
  }

  .seo-content-wrapper {
    gap: 20px;
    margin-top: 40px;
  }

  .seoCol {
    gap: 20px;
  }

  .seoCard h2 {
    font-size: 16px;
  }

  /* .seoCard-content {
    font-size: 12px;
  } */
}
