/* services.css - Services Section Styles */

#smartfence-embed-root .services-info { 
  padding: 1.5rem; /* Increased padding */
  width: 100%; /* Use full width */
  max-width: none; /* Remove any width constraints */
}

/* Services Grid */
#smartfence-embed-root .services-grid { 
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

#smartfence-embed-root .service-areas { 
  background-color: var(--bg-tertiary);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-top: 2rem;
  text-align: center;
  border: 1px solid var(--border-color);
}

#smartfence-embed-root .service-areas h4 { 
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

#smartfence-embed-root .service-areas p { 
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.5;
}