/* SEO Location Section */
.seo-location{
  padding:60px 0;
}

/* Card Styling */
.seo-location .location-card{
  border-radius:16px;
  height:100%;
  border:none;
  overflow:hidden;
  transition:all 0.3s ease;
  box-shadow:0 4px 22px color-mix(in srgb, var(--default-color), transparent 90%);
}

/* Hover Effect */
.seo-location .location-card:hover{
  transform:translateY(-6px);
  box-shadow:0 10px 30px color-mix(in srgb, var(--default-color), transparent 80%);
}

/* Card Image */
.seo-location .location-card img{
  height:220px;
  width:100%;
  object-fit:cover;
}

/* Card Body */
.seo-location .location-card .card-body{
  padding:22px;
}

/* City Title */
.seo-location .location-card h5{
  font-weight:600;
  margin-bottom:10px;
}

/* Description */
.seo-location .location-card p{
  font-size:14px;
  color:#6c757d;
  margin-bottom:16px;
}

/* Button */
.seo-location .explore-btn{
  border-radius:30px;
  padding:8px 18px;
  font-size:14px;
}

.table{
  font-size:15px;
}

.table th{
  font-weight:600;
}

.table-hover tbody tr:hover{
  background:#f5f8ff;
}

.faq-section {
  padding: 60px 0;
}

.faq-item {
  padding: 20px;
  border-radius: 10px;
  background: #f9f9f9;
  height: 100%;
}

.faq-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 15px;
  color: #555;
}