* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.7;
  color: #000;
  background-color: #fff;
}

p {
  font-size: 16px;
}

h1 {
  font-size: 65px;
  font-weight: 800;
}

h2 {
  font-size: 56px;
  font-weight: 500;
}

.divider {
  width: 100px;
  border: 0;
  border-top: 2px solid #68bd45;
  margin-top: 10px;
  margin-bottom: 30px;
}

button {
  color: #000000;
  border: 2px solid #68bd45;
  border-radius: 50px;
  font-size: 20px;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0);
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  padding: 10px 25px;
  margin-top: 30px;
}

button a {
  text-decoration: none;
}

button a:visited, button a:active {
  color: #000;
}

button:hover {
  background: #68bd45;
}

button:hover a{
  color: #fff;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
}

#overlay.active {
  opacity: 1;
  visibility: visible;
}

ul {
  list-style-type: disc;
  list-style-position: inside;
}

/* Header */
header {
  background: #fff;
  padding: 15px 30px;
  display: flex;
  justify-content: end;
  align-items: center;
}

header nav a {
  margin-left: 40px;
  padding: 4px 25px;
  border: 2px solid #68bd45;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  color: #000;
  text-transform: uppercase;
  font-size: 20px;
}

header nav a:hover {
  background: #68bd45;
  color: #fff;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 22px;
  justify-content: space-between;
  z-index: 9999;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background: green;
  border-radius: 2px;
  transition: 0.3s;
}

/* Hide nav on mobile */
nav {
  display: flex;
}

/* Animation for X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Banner Section */
.main-banner {
  background-image: url("../img/Focused\ Hunts\ main\ banner.png"),
    linear-gradient(200deg, #dbe1e7 0%, #143c64 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding-top: 230px;
  padding-bottom: 150px;
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  min-height: 111vh;
}

.main-banner .row {
  display: flex;
  flex-wrap: wrap;
  max-width: 1080px;
  width: 80%;
}

.main-banner .col {
  flex: 1;
  min-width: 280px;
}

.main-banner .col-text {
  padding-left: 20px;
  flex-grow: 2;
}

.main-banner .col-img {
  padding-left: 20px;
  flex-grow: 1;
}

.main-banner .col-img img {
  transform: scaleX(0.7) scaleY(0.7) translateX(40px) translateY(-120px);
}

.slogan {
  font-size: 35px;
  font-weight: 500;
}

/* Services Section */
.section-services {
  padding-top: 100px;
  padding-right: 40px;
  padding-bottom: 100px;
  padding-left: 40px;
  margin-top: 10px;
  box-shadow: 1px 2px 18px 0px rgba(10, 45, 97, 0.48);
  width: 90%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
  margin-top: -180px;
  z-index: 999;
  position: relative;
  border-radius: 10px;
}

.section-services h2 {
  margin-bottom: 30px;
}

/* Why Trust Us */
.section-trust {
  text-align: center;
  padding-top: 255px;
  padding-bottom: 100px;
  background-color: #dbe1e7;
  background-image: url(../img/Focused-Hunts-trust-bckg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 9;
  position: relative;
  margin-top: -160px;
}

.section-trust h2 {
  margin-bottom: 30px;
}

.section-trust .row {
  display: flex;
  flex-wrap: wrap;
  max-width: 1080px;
  width: 80%;
  margin: auto;
}

.section-trust .row-2 {
  margin-top: -70px;
}

.section-trust .card {
  padding: 0 20px;
  flex: 1;
  min-width: 280px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-trust .card img {
  width: 128px;
  margin-bottom: 20px;
}

.section-trust .card-1,
.section-trust .card-4 {
  margin-top: 180px;
}

.section-trust .card-2,
.section-trust .card-5 {
  margin-top: 90px;
}

.card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Section contact */
.section-contact {
  text-align: center;
  padding-top: 160px;
  padding-bottom: 160px;
  background-image: url(../img/focused-hunts-contact-bckg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.section-contact .row {
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 40px;
  margin-top: 10px;
  box-shadow: 1px 2px 18px 0px rgba(10, 45, 97, 0.48);
  width: 80%;
  max-width: 1080px;
  margin: auto;
  text-align: center;
  z-index: 999;
  position: relative;
  border-radius: 10px;
  display: flex;
}

.section-contact .col {
  flex: 1;
  min-width: 280px;
}

.section-contact .col-1 {
  flex-grow: 2;
  padding: 70px 100px;
}

.section-contact .col-2 {
  background-image: url(../img/contact-row-bckg.png),
    radial-gradient(circle at top right, #dbe1e7 0%, #436383 100%);
  background-size: cover;
  background-position: left bottom 0px;
  background-repeat: no-repeat;
  min-height: 1px;
  padding: 30px;
  flex-grow: 1;
  border-radius: 10px;
}

.section-contact h2 {
  margin-bottom: 30px;
}

/* Footer */
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  box-shadow: 1px 2px 18px 0px rgba(10, 45, 97, 0.48);
  position: relative;
}

/* About page */
.about-main-banner {
  background-image: url("../img/Focused-Hunts-about-banner.png"),
    radial-gradient(circle at top right, #dbe1e7 0%, #436383 100%);
}

.about-section-operate {
  background-color: transparent;
  position: relative;
  z-index: 1;
}

.about-section-operate-row {
  padding-top: 100px;
  padding-right: 40px;
  padding-bottom: 100px;
  padding-left: 40px;
  margin-top: 10px;
  box-shadow: 1px 2px 18px 0px rgba(10, 45, 97, 0.48);
  width: 90%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
  margin-top: -180px;
  z-index: 999;
  position: relative;
  background-color: #fff;
  border-radius: 10px;
}

.about-section-operate h2 {
  margin-bottom: 40px;
}

.about-section-operate h3 {
  font-size: 18px;
}

.about-section-operate .row {
  display: flex;
  flex-wrap: wrap;
  margin: auto;
}

.about-section-operate .card {
  padding: 0 20px;
  flex: 1;
  min-width: 280px;
}

.about-section-operate .card img {
  width: 128px;
  margin-bottom: 20px;
}

.about-section-commitment {
  text-align: center;
  padding-top: 320px;
  padding-bottom: 150px;
  background-color: #dbe1e7;
  background-image: url(../img/Focused-Hunts-about-commitment-bckg.png),
    radial-gradient(circle at center, #436383 0%, #436383 100%);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  margin-top: -200px;
}

.about-section-commitment h2 {
  margin-bottom: 30px;
  color: #fff;
  text-align: center;
}

.about-section-commitment p {
  text-align: left;
  color: #fff;
}

.about-section-commitment button {
  display: block;
  margin: 30px auto;
  color: #fff;
}

.about-section-commitment button a {
  color: #fff;
}

.about-section-commitment .row {
  max-width: 1080px;
  width: 80%;
  margin: auto;
}

/* Services page */
.services-main-banner {
  background-image: url("../img/Focused-Hunts-services-main-banner.png"),
    linear-gradient(260deg, #dbe1e7 0%, #436383 100%);
}

.services-section-faq {
  background-color: transparent;
  position: relative;
  z-index: 1;
}

.services-section-faq-row {
  padding-top: 60px;
  padding-right: 40px;
  padding-bottom: 60px;
  padding-left: 40px;
  margin-top: 10px;
  box-shadow: 1px 2px 18px 0px rgba(10, 45, 97, 0.48);
  width: 80%;
  max-width: 1080px;
  margin: auto;
  text-align: center;
  margin-top: -180px;
  z-index: 999;
  position: relative;
  background-color: transparent;
  border-radius: 10px;
}

.accordion-item {
  border-radius: 10px;
  border: 1px solid #d9d9d9;
  padding: 10px;
  background: #fff;
  margin-bottom: 30px;
}

.accordion-header {
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
  text-transform: none;
  margin-top: 0;
  border-radius: 10px;
  padding: 12px 18px;
}

.accordion-header:hover {
  background: #68bd45;
}

.accordion-header::after {
  content: "+";
  font-size: 20px;
  transition: transform 0.3s;
}

.accordion-header.active::after {
  content: "–";
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
  background: #fff;
  text-align: left;
}

.accordion-content p {
  padding: 15px 0;
}

.accordion-content.active {
  opacity: 1;
  transform: translateY(0);
}

.services-section-benefits {
  text-align: center;
  background-image: linear-gradient(
    173deg,
    rgba(255, 255, 255, 0) 40%,
    #436383 41%
  );
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  margin-top: -320px;
}

.services-section-benefits h2 {
  margin-bottom: 30px;
  color: #fff;
  text-align: left;
  line-height: 1.2;
  padding-top: 380px;
}

.services-section-benefits p {
  text-align: left;
  color: #fff;
}

.services-section-benefits button {
  display: block;
  margin: 50px auto 0;
  color: #fff;
}

.services-section-benefits button a{
  color: #fff;
}

.services-section-benefits .row {
  max-width: 1080px;
  width: 80%;
  margin: auto;
  padding-left: 50px;
  padding-right: 50px;
}

.services-section-benefits-cards {
  text-align: center;
  padding-top: 50px;
  padding-bottom: 80px;
  background-image: linear-gradient(
    173deg,
    #436383 44%,
    rgba(255, 255, 255, 0) 45%
  );
}

.services-section-benefits-cards-row {
  display: flex;
  flex-wrap: wrap;
  max-width: 1080px;
  width: 80%;
  margin: auto;
  justify-content: space-between;
  align-items: flex-start;
}

.services-section-benefits-cards-row .card {
  width: 220px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 10px 60px 0px rgba(10, 45, 97, 0.1);
  padding: 50px 20px;
}

.services-section-benefits-cards-row .card p {
  color: #000;
  text-align: center;
}

.services-section-benefits-cards-row .card img {
  width: 128px;
  margin-bottom: 20px;
}

.services-section-benefits-cards-row .card-1 {
  margin-top: 120px;
}

.services-section-benefits-cards-row .card-2 {
  margin-top: 80px;
}

.services-section-benefits-cards-row .card-3 {
  margin-top: 40px;
}

/* Contact page */
.contact-main-banner {
  background-image: url("../img//Focused-Hunts-contact-banner.png"),
    linear-gradient(189deg, #dbe1e7 0%, #436383 100%);
}

.contact-section-form {
  background-image: url(../img/Focused-Hunts-contact-form-bckg.png);
  position: relative;
  padding-bottom: 80px;
  background-position: bottom right;
}

.contact-section-form-row {
  padding-top: 60px;
  padding-right: 40px;
  padding-bottom: 60px;
  padding-left: 40px;
  margin-top: 10px;
  box-shadow: 1px 2px 18px 0px rgba(10, 45, 97, 0.48);
  width: 80%;
  max-width: 1080px;
  margin: auto;
  text-align: center;
  margin-top: -180px;
  z-index: 999;
  position: relative;
  background: linear-gradient(180deg, #fff 50%, rgba(255, 255, 255, 0) 50%);
  border-radius: 10px;
  background-size: cover;
  background-position: bottom;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-row.full-width {
  flex-direction: column;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}

label {
  margin-bottom: 8px;
  font-weight: 600;
}

input,
textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #68bd45;
  box-shadow: 0 0 5px rgba(104, 189, 69, 0.4);
}

.contact-form button {
  align-self: center;
  margin-top: 20px;
  padding: 12px 30px;
  background-color: #fff;
}

.contact-form button:hover {
  color: #fff;
}

.form-alert {
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  background: #e6f3e1;
  color: #2f6f2f;
  border: 1px solid #68bd45;
}

.form-alert:contains("❌") {
  background: #ffe6e6;
  color: #b32d2d;
  border: 1px solid #e66;
}

/* Template */
.template-main-banner {
  background-image: url("../img/Focused-Hunts-about-banner.png"),
    linear-gradient(200deg, #dbe1e7 0%, #143c64 100%);
}

.template-section {
  background-color: transparent;
  position: relative;
  z-index: 1;
  padding-bottom: 80px;
}

.template-section-row {
  padding-top: 60px;
  padding-right: 40px;
  padding-bottom: 60px;
  padding-left: 40px;
  margin-top: 10px;
  box-shadow: 1px 2px 18px 0px rgba(10, 45, 97, 0.48);
  width: 80%;
  max-width: 1080px;
  margin: auto;
  text-align: center;
  margin-top: -180px;
  z-index: 999;
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  height: 100%;
}

.book-a-meeting-section {
  background-color: transparent;
  position: relative;
  z-index: 1;
  padding-bottom: 80px;
  height: 2500px;
}

.book-a-meeting-section-row {
  padding-top: 60px;
  padding-right: 40px;
  padding-bottom: 60px;
  padding-left: 40px;
  margin-top: 10px;
  box-shadow: 1px 2px 18px 0px rgba(10, 45, 97, 0.48);
  width: 80%;
  max-width: 1080px;
  margin: auto;
  text-align: center;
  margin-top: -180px;
  z-index: 999;
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  height: 100%;
}

/* Tablet adjustments */
@media (max-width: 1024px) {
  h1 {
    font-size: 48px;
  }
  h2 {
    font-size: 40px;
  }
  .slogan {
    font-size: 28px;
  }
  .main-banner .col-img img {
    transform: translateX(0) translateY(0);
    max-width: 250px;
  }
  .section-services {
    margin-top: -60px;
    padding: 100px 20px;
    border-radius: 10px;
  }
  .section-contact .col-1 {
    padding: 50px 50px;
  }

  .about-section-operate-row {
    margin-top: -20px;
  }

  .services-section-faq-row {
    margin-top: -30px;
  }
  .services-section-benefits-cards-row .card {
    width: 190px;
  }

  .contact-main-banner {
    padding-bottom: 80px;
  }
  
  .contact-section-form-row {
    margin-top: -40px;
  }

  .template-section-row {
    margin-top: -60px;
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  h1 {
    font-size: 38px;
  }
  h2 {
    font-size: 30px;
  }
  .slogan {
    font-size: 20px;
  }
  p {
    font-size: 15px;
  }

  nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    background: #fff;
    flex-direction: column;
    padding: 60px 20px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;

    /* Hidden by default */
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
  }

  header nav a {
    margin: 15px 0;
    display: block;
    text-align: center;
    font-size: 16px;
  }

  .hamburger {
    display: flex;
  }

  .divider {
    margin-left: auto;
    margin-right: auto;
  }

  /* Slide in */
  nav.active {
    transform: translateX(0);
  }

  /* Banner */
  .main-banner {
    padding: 80px 20px 50px;
    text-align: center;
  }
  .main-banner .row {
    flex-direction: column;
    align-items: center;
  }
  .main-banner .col-text {
    padding: 0;
  }
  .main-banner .col-img img {
    margin-top: 20px;
    max-width: 180px;
  }

  .about-main-banner .row {
    flex-direction: column;
    align-items: center;
  }
  .about-main-banner .col-img {
    text-align: center;
  }

  .about-section-operate-row .card {
    margin-bottom: 30px;
  }

  /* Services */
  .section-services {
    margin-top: 20px;
    padding: 60px 20px;
    width: 90%;
  }

  /* Trust Section */
  .section-trust {
    padding: 60px 20px;
    margin-top: 80px;
    background-image: none;
  }
  .section-trust .row {
    flex-direction: column;
    width: 100%;
  }
  .section-trust .row-2 {
    margin-top: 0;
  }
  .section-trust .card {
    margin: 30px 0;
  }
  .section-trust .card-1,
  .section-trust .card-2,
  .section-trust .card-3,
  .section-trust .card-4,
  .section-trust .card-5,
  .section-trust .card-6 {
    margin-top: 0;
  }

  /* Contact Section */
  .section-contact {
    padding-top: 130px;
    padding-bottom: 130px;
  }
  .section-contact .row {
    flex-direction: column;
    width: 90%;
    padding-right: 40px;
  }
  .section-contact .col-1 {
    padding: 40px 40px;
  }
  .section-contact .col-2 {
    min-height: 1px;
    padding: 0;
    border-radius: 10px;
  }
  .services-section-benefits-cards-row {
    flex-direction: column;
    align-items: center;
  }
  .services-main-banner .row {
    flex-direction: column;
    align-items: center;
  }
  .services-section-benefits-cards-row .card-1,
  .services-section-benefits-cards-row .card-2,
  .services-section-benefits-cards-row .card-3 {
    margin-top: 0px;
    margin-bottom: 10px;
  }
  .services-section-benefits-cards {
    background-image: linear-gradient(
      173deg,
      #436383 84%,
      rgba(255, 255, 255, 0) 85%
    );
  }

  /* Contact page */
  .form-row {
    flex-direction: column;
  }
}

/* Small Mobile (phones <480px) */
@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 22px;
  }
  .slogan {
    font-size: 18px;
  }
  button {
    font-size: 12px;
    padding: 10px 18px;
  }
  header nav a {
    font-size: 16px;
    padding: 5px 15px;
  }
  .main-banner h1 {
    margin-top: 80px;
  }
  .section-contact {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .section-contact .row {
    padding-right: 0px;
    padding-left: 0;
  }
  .services-section-faq-row {
    padding: 40px 15px;
  }
  .services-section-benefits {
    background-image: linear-gradient(
      173deg,
      rgba(255, 255, 255, 0) 27%,
      #436383 28%
    );
  }
  .services-section-benefits .row {
    padding-left: 20px;
    padding-right: 20px;
  }
  .contact-section-form-row {
    padding: 60px 20px;
  }
}

.privacy-text
{
  text-align: left;
  width: 90%;
  padding: 10px;
}