/* recoil-garage.css */

/* Global Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #111;
  color: #eee;
  line-height: 1.5;
}

/* Header */
header {
  background: #b30000;
  padding: 20px;
  text-align: center;
}
header h1 {
  margin: 0;
  color: white;
  font-size: 2.2rem;
}

/* Hero Section */
.hero {
  background: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1450&q=80');
  background-size: cover;
  background-position: center;
  padding: 120px 20px;
  text-align: center;
}
.hero h2 {
  font-size: 2.5rem;
  color: white;
  text-shadow: 2px 2px 5px #000;
  margin: 0;
}

/* Sections */
section {
  padding: 40px 20px;
  max-width: 1100px;
  margin: auto;
}
h3 {
  border-left: 5px solid #b30000;
  padding-left: 10px;
  margin-bottom: 20px;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.service-box {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.service-box img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}


/* Footer */
footer {
  background: #000;
  padding: 20px;
  text-align: center;
  color: #888;
  margin-top: 40px;
}


<div style="text-align:center; margin-top:30px;">
