/* General reset */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #333;
  background: #f9f9f9;
  line-height: 1.6;
}

/* Hero section */
.hero {
  background: linear-gradient(135deg, #0d1b2a, #1b263b);
  color: white;
  text-align: center;
  padding: 4rem 1rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin: 0;
}

.hero h1 span {
  color: #e63946; /* red accent */
}

.hero p {
  margin-top: 0.5rem;
  font-size: 1.2rem;
}

.hero .phone {
  font-weight: bold;
  font-size: 1.3rem;
  margin-top: 1rem;
}

/* Services */
.services {
  padding: 3rem 1rem;
  text-align: center;
  background: #fff;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.service-card {
  background: #f1f1f1;
  border-radius: 8px;
  padding: 1.5rem;
  width: 280px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.service-card h3 {
  margin-top: 0;
  color: #1b263b;
}

/* Contact */
.contact {
  background: #1b263b;
  color: white;
  padding: 3rem 1rem;
  text-align: center;
}

.contact h2 {
  margin-bottom: 1rem;
}

.contact strong {
  color: #e63946;
}

/* Footer */
footer {
  background: #0d1b2a;
  color: #ccc;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}
