* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #ffffff;
  color: #111;
  line-height: 1.6;
}

/* HEADER */
header {
  background: #000;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
}

.logo img {
  height: 60px;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
}

nav a:hover {
  color: red;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #000, #b30000);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 15px;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: red;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.btn:hover {
  background: #b30000;
}

/* SECTIONS */
.services, .areas, .page {
  padding: 50px 20px;
  max-width: 1000px;
  margin: auto;
}

.services h2,
.areas h2,
.page h1 {
  margin-bottom: 20px;
  color: #b30000;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.card {
  background: #f4f4f4;
  padding: 25px;
  text-align: center;
  font-weight: bold;
  border-left: 5px solid red;
}

/* CONTACT FORM */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
}

.contact-form button {
  background: red;
  color: #fff;
  padding: 12px;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

.contact-form button:hover {
  background: #b30000;
}

/* FOOTER */
footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}
/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.team {
  padding: 80px 20px;
  text-align: center;
  background: #0f0f0f;
  color: white;
}

.team h1 {
  color: red;
  margin-bottom: 40px;
}

.team-card {
  max-width: 600px;
  margin: auto;
  background: #1a1a1a;
  padding: 30px;
  border-radius: 12px;
}

.team-card img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid red;
  margin-bottom: 20px;
}

.team-card h2 {
  margin-bottom: 15px;
}

.team-card p {
  line-height: 1.6;
}

.phone {
  margin-top: 20px;
  font-size: 1.2em;
  color: red;
}


