/* Base Reset */
* {
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background: #fff;
  color: #000;
  line-height: 1.6;
}

/* Navigation */
.site-nav {
  background: #000;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
}
.site-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
.site-nav a:hover {
  color: #c8102e;
}

/* Hero Banner */
.hero-banner {
  background-color: #c8102e;
  color: #fff;
  text-align: center;
  padding: 3rem 1rem;
}
.hero-banner h1 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

/* Equipment Gallery */
.equipment-gallery {
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
.equipment-row {
  display: flex;
  gap: 2rem;
  justify-content: center;
}
.equipment-card {
  background: #fff;
  border: 2px solid #c8102e;
  border-radius: 8px;
  padding: 1rem;
  width: 180px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.equipment-card:hover {
  transform: scale(1.05);
}
.equipment-card img {
  max-width: 100%;
  height: auto;
}
.equipment-card h3 {
  font-size: 1rem;
  margin-top: 0.5rem;
}

/* CTA Button */
.cta-button {
  text-align: center;
  margin: 2rem 0;
}
.btn-quote {
  background: #c8102e;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  border: none;
  display: inline-block;
}
.btn-quote:hover {
  background: #a00c24;
}

/* About Section */
.about-us,
.why-choose-us {
  padding: 2rem 1rem;
  max-width: 700px;
  margin: 0 auto;
}
.about-us h2,
.why-choose-us h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.why-choose-us ul {
  list-style: none;
  padding: 0;
}
.why-choose-us li {
  margin-bottom: 0.8rem;
}

/* Footer */
footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .equipment-row {
    flex-wrap: wrap;
    justify-content: center;
  }
}
