.search-engines {
  background-color: var(--light);
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.search-engines::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234285f4' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  animation: subtleBgShift 60s linear infinite;
}

.search-engines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.search-engine-card {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.search-engine-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.search-engine-logo {
  width: 120px;
  height: 60px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-engine-logo img {
  max-width: 100%;
  max-height: 100%;
}

.search-engine-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.search-engine-features {
  margin-top: 1rem;
  width: 100%;
}

.search-engine-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  text-align: left;
}

.search-engine-feature i {
  color: var(--primary);
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}

@media (max-width: 768px) {
  .search-engines-grid {
    grid-template-columns: 1fr;
  }
}