/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

h1, h2 {
  font-family: 'Montserrat', sans-serif;
}

/* Hero Banner */
.hero {
  background: url('../images/hero-home.jpg') center/cover no-repeat;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-text {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background: #e27c1f;
  color: white;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background: #d1640e;
}

/* Navigation */
.main-nav {
  background: #333;
  text-align: center;
  padding: 10px 0;
}

.main-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.main-nav li {
  margin: 0 15px;
}

.main-nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.main-nav a:hover {
  text-decoration: underline;
}

/* Sections */
main {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

section {
  margin-bottom: 60px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* Steps */
.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
}

.step {
  background: #fff;
  border-left: 5px solid #e27c1f;
  padding: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Testimonials */
.testimonials blockquote {
  font-style: italic;
  border-left: 4px solid #ccc;
  padding-left: 15px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Make all images responsive and limit their size */
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 15px 0;
}

/* About Page Enhancements */
.header-simple {
  background: #2c3e50;
  color: white;
  padding: 30px 20px;
  text-align: center;
}

.about-content {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.about-content section {
  margin-bottom: 60px;
}

.about-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.about-content h3 {
  margin-top: 30px;
  color: #2c3e50;
}
form {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto 40px auto;
}

form label {
  font-weight: bold;
}

form input,
form textarea {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
}

form textarea {
  resize: vertical;
}

form .btn {
  align-self: start;
  background-color: #e27c1f;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

form .btn:hover {
  background-color: #d1640e;
}
