body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    background-color: #f6f0e4;
  }
  
  .container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 1rem;
  }
  
.site-header {
  background-color: transparent;
  padding: 1rem 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}


.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-button {
  background-color: #f6f0e4;
  color: #ea673e;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.contact-button:hover {
  background-color: #e0d9cc;
}

  
  .logo {
    font-size: 1.6rem;
    font-weight: bold;
  }
  

.hero {
  height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  border-bottom-left-radius: 100% 30%;
  border-bottom-right-radius: 100% 30%;
  background: url('images/mm.png') no-repeat center center;
  background-size: cover;
  background-color: #f6f0e4; /* fallback */
  padding: 0; /* Remove top/bottom padding since we are centering */
}


  .hero h1,
.hero h2,
.hero p,
.header img,
.header a{
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6); /* improves text readability */
}
  .hero h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
  }
  /*Overlay for better contrast*/
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  border-bottom-left-radius: 100% 30%;
  border-bottom-right-radius: 100% 30%;
  background: rgba(0, 0, 0, 0.4); /* optional overlay for contrast */
  z-index: 0;
}

.hero > .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

  
  .cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #1c3242;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
  }
  
  .cta-button:hover {
    background: #005fa3;
  }
  
  .features {
    padding: 2rem 0;
  }
  
  .features h2{
    text-align: center;
    margin-bottom: 1rem;
    color: #003366;
  }

  .features a,.cta-btn {
    padding-top:20px;
  text-align: center;
}

  
  .features ul {
    list-style: none;
    padding: 0;
    max-width: 400px;
    margin: 0 auto;
    text-align:left;
  }
  
  .features li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
  }
  
  .features li::before {
    content: "✔";
    /*position: absolute;
    left: 0;*/
    padding-right:15px;
    color: #ea6f46;
  }
  
  .how-it-works ol {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    padding-left: 1.5rem;
  }
  
  .site-footer {
    background: #222;
    color: #ccc;
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
  }
  
  .site-footer a {
    color: #ccc;
    text-decoration: underline;
  }

  .form-section h1 {
    text-align: center;
    color: #003366;
    margin-bottom: 0.5rem;
  }
  
  .form-section p {
    text-align: center;
    margin-bottom: 2rem;
  }


  .contact-form {
  max-width: 600px;
  margin: 3rem auto;
  padding: 2rem;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', sans-serif;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #1c3242;
}

input,
textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

input:focus,
textarea:focus {
  border-color: #0077cc;
  box-shadow: 0 0 0 2px rgba(0, 119, 204, 0.2);
  outline: none;
}

.submit-button {
  background-color: #003366;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: #005fa3;
}
