/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
  color: #111;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Container */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem;
}

/* Header */
.header {
  background: #000;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  height: 60px;
}
.nav {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.nav a {
  color: #fff;
  font-weight: 500;
}
.nav a:hover {
  color: #b30000;
}

/* Hero */
.hero {
  background: #b30000;
  color: #fff;
  text-align: center;
  padding: 5rem 2rem;
}
.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}
.btn {
  background: #fff;
  color: #b30000;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s;
  border: none;
}
.btn:hover {
  background: #f0f0f0;
}

/* Section Styles */
.section {
  padding: 4rem 2rem;
}
.section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.dark {
  background: #f8f8f8;
}
.services-list {
  list-style: none;
  padding-left: 1rem;
}
.services-list li {
  margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto 2rem auto;
}
.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.contact-form button {
  align-self: flex-start;
}
.contact-details {
  text-align: center;
}
.contact-details a {
  color: #b30000;
}

/* Footer */
.footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 2rem;
}
/* Hero Section with Background Image */
.hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}
.overlay {
  background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.4rem;
  margin-bottom: 2rem;
}
.btn {
  background: #b30000;
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.btn:hover {
  background: #860303;
}
