/* gbdriving/styles.css — page-specific overrides for GB Driving School */

/* Ensure logo fits header */
.site-logo img {
  height: 50px;
  width: auto;
  display: block;
}

/* Contact grid tweaks (complements shared.css) */
.contact-info-grid {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-info-card {
  flex: 1 1 240px;
  min-width: 220px;
  background: rgba(255,255,255,0.65);
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.feature-card {
  background: rgba(255,255,255,0.65);
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.feature-icon {
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

/* Small responsive tweaks */
@media (max-width: 600px) {
  .contact-info-grid { flex-direction: column; }
  .contact-info-card { width: 100%; }
}
