body {
    background-color: #fcf0ec;
    font-family: Arial, Helvetica, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Styles for Header and Navbar */
.header {
  display: flex;
  justify-content: space-between; 
  align-items: center; 
  padding: 1rem;
  background: #fcf0ec;
  color: white;
  max-width: 1200px;
  margin: 0 auto;
}

.header > div {
    text-align: center;
    background-color:#fcf0ec;
}

.logo {
  height: 60px;
  transition: transform 0.2s;
}

.logo:hover {
    transform: scale(1.02);
}

/* Links container */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem; 
  list-style: none;
}

/* Individual links */
.nav-link {
  color: black;
  text-decoration: none;
  padding: 10px 20px;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #2EC4B6;
}

.nav-link-button {
    margin: auto;
    padding: 10px 20px;
    background-color: #FF9F1C;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s ease;
    width: fit-content;
}

.nav-link-button:hover {
    background-color: white;
    color: #2EC4B6;
    border: 1px solid #2EC4B6;   
}

/*Content Area Styles*/

main {
    background-color: #fcf0ec;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

main > div {
    padding: 25px;
}

main img {
  width: 450px;
  height: 450px;
  display: block;
  margin: auto;
  border-radius: 25px;
}

section {
  background-color:#FDFFFC;
  display: flex;
  justify-content: space-evenly;
  align-items: self-start;
  max-width: 1200px;
  margin: 0 auto;
}

section div {
  padding: 25px;
}

section img {
  max-width: 400px;
  border-radius: 25px;
  display: block;
}



h1 {
    color: #2EC4B6;
    text-align: center;
    padding-bottom: 25px;
    font-weight: bold;
}

h2 {
    text-align: center;
    padding: 25px;
}

h3 {
    text-align: center;
    padding: 20px;
}

h4 {
  text-align: center;
  text-decoration: italic;
}

.feature {
    padding: 50px;
    text-align: center;
}

.feature-photo {
  padding: 20px;
}

.feature-photo img {
    border-radius: 25px;
    width: 450px;
    height: 450px;
    display: inline;
    margin: auto;
}

.button {
    display: block;
    margin: 20px auto 0 auto;
    padding: 10px 20px;
    background-color: #FF9F1C;
    color: white;
    text-decoration: none;
    font-size: medium;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s ease;
    width: fit-content;
    border: 0px;
}

.button:hover {
    background-color: white;
    color: #2EC4B6;
    border: 1px solid #2EC4B6;
} 

.flex-services {
  display: flex;
  justify-content: space-evenly;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing {
  padding: 20px;
  background-color: #FDFFFC;
  border: 1px solid black;
  border-radius: 25px;
  max-width: 45%;
}

.pricing img {
  display: block;
  margin: auto;
  width: 90%;
}

.pricing-info {
  padding: 20px;
  background-color:#FDFFFC;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.small {
  text-align: center;
  font-size: smaller;
  font-style: italic;
  padding-top: 5px;
}

ul {
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}

li {
  padding: 5px;
}

.text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.text p {
  padding: 5px;
}

.text img {
  max-width: 400px;
  border-radius: 25px;
}

.image-left {
  display: flex;
  flex-direction: row-reverse;
}

.image-right {
  display: flex;
}

.image-right p {
  padding: 5px;
}

.image-left p {
  padding: 5px;
}

/* Contact Form Styles */
.form-area {
  background-color:#FDFFFC;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.form-area p {
  padding: 10px; 
  width: 95%;
}

.form-area div {
  width: 50%;
}

.contact-form {
    background-color: #FDFFFC;
    padding: 25px;
}

.form-input {
  padding: 10px;
  width: 95%;
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
  border-bottom: 3px solid #FF9F1C;
}

.form-textarea {
  font-family: Arial, Helvetica, sans-serif;
  padding: 10px;
  width: 95%;
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
  border-bottom: 3px solid #FF9F1C;
}

.contact-form-button {
    display: block;
    margin: 20px auto 0 auto;
    padding: 10px 20px;
    background-color: #FF9F1C;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s ease;
    width: fit-content;
}

/* Footer Styles */
footer {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: #2EC4B6; 
    padding-bottom: 0px;   
    color: #fff;
}

footer > p {
    padding: 10px;
    text-align: center;
}

.social-icon {
    max-height: 50px;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
  }
 
  .nav-links {
    flex-direction: column;
    align-items: center;
  }
  
  .logo {
    text-align: center;
    max-width: 100%;
  }

  .feature-photo {
    padding: 20px;
    margin: auto;
  }

  .feature-photo img {
    width: 95%;
    aspect-ratio: 1 / 1;
  }

  .flex-services {
    flex-direction: column;
    width: 95%;
  }

  .pricing {
    width: 100%;
    max-width: 100%;
    padding: 20px;
  }

  .image-left, .image-right {
    display: flex;
    flex-direction: column;
  }

  .image-left img, .image-right img {
    max-width: 95%;
    height: auto;
    margin: auto;
  }

  main, .text {
    flex-direction: column-reverse;
  }

  .text img {
    max-width: 95%;
    height: auto;
    margin: auto;
  }

  main img {
    max-width: 100%;
    height: auto;
    margin: auto;
  }

  .form-area {
    flex-direction: column;
    width: 95%;
    margin: auto;
  }

  .form-area div {
  width: 95%;
  margin: auto;
  }

  #text-interaction {
    visibility: hidden;
  }

}




