body {
  font-family: 'Comic Sans MS', cursive, sans-serif;
  margin: 0;
  padding: 0;
  color: #222;
  background: #fff;
}
.logo{
    width: 50px;
    height: 50px;
}
h1, h2 {
  text-align: center;
  margin: 20px 0;
}
nav ul{
    display: flex;
    align-items: center;
    justify-content: center;
}
nav ul li {
    list-style: none;
    padding: 10px;
}
nav ul li a{
    color: orange;
}
a{
    text-decoration: none;
}
.hero {
  background: #f4f4f4;
  padding: 20px;
  text-align: center;
}
.icons-section h1{
    text-align: left;
    font-size: 38px;
}
.icon-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.icon-row img {
  width: 150px;
}

.full-width-img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  margin-top: 20px;
  border-radius: 50px;
}

section {
  padding: 40px 20px;
  border-bottom: 1px solid #eee;
}
.reason-row h2{
    text-align: left;
}
.values ul,
.services ul,
.reasons ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: auto;
}

.values li,
.services li,
.reasons li {
  padding: 10px 0;
  font-weight: bold;
}
.service-card{
    padding:  10px;
    box-shadow: 2px 4px 14px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
}
.contact p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
 .faq-item {
      margin-bottom: 1.5rem;
      text-align: left;
    }
    .faq-item summary {
      font-weight: bold;
      font-size: 1rem;
      padding: 0.5rem;
      background: #f8f8f8;
      border: 1px solid #ccc;
      border-radius: 5px;
      cursor: pointer;
    }
    .faq-item p {
    text-align: left;
      padding: 0.5rem 1rem;
      color: #555;
    }
form {
  max-width: 500px;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.submit-btn{
  padding: 12px;
  background-color: orange;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}
.quick-links a{
    color: orange;
    padding-right: 10px;
}

footer{
    max-height: 100px;
    width: 100%;
    background-color: black;
    color: white;
    padding: 20px;
    text-align: center;
}
.footer-btn{
    margin-top: 10px;
}
.accept-btn, .decline-btn{
    padding: 10px 30px;
    border: none;
    outline: 0;
    margin-right: 5px;
    border-radius: 4px;
    cursor: pointer;
}
.accept-btn{
    color: white;
    background-color: orange;
}
.decline-btn{
    color: white;
    background-color: black;
    border: 1px solid white;
}