body {
  background-image: url('../assets/background.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-clip: border-box;
  height: 100vh;
}

.background-cover {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
}

main {
  display: flex;
  align-items: center;
  height: 100vh;
}

.hero {
  margin-top: 80px;
  width: 50%;
}

.hero > h1 {
  font-size: 48pt;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--web-contrast-text-color);
  margin-bottom: 10px;
}

.hero > p {
  font-size: 28pt;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--web-contrast-text-color);
  margin-bottom: 50px;
}

.hero > a {
  text-decoration: none !important;
  display: inline-block;
  position: relative;
  padding: 15px 30px;
  font-size: 16pt;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  background-color: var(--action-button-bg-color);
  color: var(--action-button-text-color);
  border-radius: 2px;
  cursor: pointer;
}


/* Services Section */
section {
  width: 100%;
  padding: 100px 0px;
  box-sizing: border-box;
}

section.fill {
  background-color: #fff;
}

section > div.container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

section > div.container > h1 {
  font-size: 32pt;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 100px;
}

.services-section {
  background-color: #fff;
}

.services-section > div.container > h1 {
  color: var(--web-text-color);
}

.services {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  justify-content: space-between;
  align-items: start;
  gap: 50px;
}

.service-seperator {
  width: 1px;
  height: 100%;
  background-color: var(--line-seperator-color);
}

.service {
  text-align: center;
}

.service > img {
  width: 20%;
  object-fit: cover;
  object-position: 50% 50%;
  margin-bottom: 50px;
}

.service > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service h1 {
  font-size: 28pt;
  font-weight: 500;
  letter-spacing: 0.8px;
  color: var(--web-text-color);
  margin-bottom: 15px;
}

.services-h-line {
  width: 30px;
  height: 3px;
  background-color: var(--web-text-color);
  margin-bottom: 15px;
  border-radius: 4px;
}

.service p {
  font-size: 12pt;
  font-weight: 400;
  letter-spacing: 0.8px;
  color: var(--web-text-color);
  margin-bottom: 10px;
  line-height: 1.4em;
}

/* Overview Section */
.overview-section {
  background-color: var(--web-bg-dark-color);
}

.overview-section > div.container > h1 {
  color: var(--web-contrast-text-color);
}

.overview-wrapper {
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  gap: 100px;
}

.overview-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.overview-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.overview-steps > h1 {
  font-size: 21pt;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: var(--web-contrast-text-color);
}

.overview-steps > p {
  font-size: 14pt;
  font-weight: 300;
  letter-spacing: 0.4px;
  color: var(--web-contrast-darker-text-color);
}

.overview-image {
  width: 100%;
}

/* FAQ Section */
.faq-section {
  background-color: var(--web-bg-color);
}

.faq-section > div.container > h1 {
  color: var(--web-text-color);
}

.faq-section > div.container > p {
  font-size: 14pt;
  font-weight: 400;
  margin-top: 100px;
  margin-bottom: 20px;
  color: var(--web-text-color);
}

.faq-section > div.container > a {
  text-decoration: none !important;
  display: inline-flex;
  flex-direction: row;
  align-items: end;
  gap: 10px;
  position: relative;
  padding: 15px 30px;
  font-size: 16pt;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  background-color: var(--action-button-contrast-bg-color);
  color: var(--action-button-contrast-text-color);
  border-radius: 2px;
  cursor: pointer;
}

.faq-section > div.container > a:active {
  background-color: var(--action-button-contrast-bg-darker-color);
}

.faq-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  width: 100%;
}

.faq-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.faq-qa {
  display: flex;
  flex-direction: column;
}

.faq-qa > h1 {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 6px;
  font-size: 16pt;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: var(--web-text-color);
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--line-seperator-color);
  cursor: pointer;
}

.faq-qa > p {
  display: none;
  font-size: 12pt;
  font-weight: 400;
  letter-spacing: 0.4px;
  line-height: 1.4em;
  color: var(--web-lighter-text-color);
}

.faq-qa > p > a {
  text-decoration: none;
  font-weight: 600;
  color: var(--primary-darker-color);
}

.faq-qa > p > a:hover {
  text-decoration: underline;
}

.faq-qa:not(.show) > p {
  display: none;
}

.faq-qa.show > p {
  display: block;
}

.faq-expand-icon,
.faq-collapse-icon {
  margin-right: 4px;
  margin-top: 3px;
}

.faq-qa.show > h1 > .faq-collapse-icon {
  display: inline-block;
}

.faq-qa.show > h1 > .faq-expand-icon {
  display: none;
}

.faq-qa:not(.show) > h1 > .faq-collapse-icon {
  display: none;
}

.faq-qa:not(.show) > h1 > .faq-expand-icon {
  display: inline-block;
}

/* Media Queries */
@media screen and (max-width: 1750px) {
  .overview-wrapper {
    grid-template-columns: 2fr 1fr;
  }
}


@media screen and (max-width: 1450px) {
  .container {
    width: 100%;
    padding: 0px 50px;
    box-sizing: border-box;
  }

  .hero {
    width: 60%;
  }
}

@media screen and (max-width: 1200px) {
  section .container {
    width: 100%;
    padding: 0px 50px;
    box-sizing: border-box;
  }

  .services {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1px 1fr 1px 1fr;
    justify-content: center;
    align-items: start;
    gap: 50px;
  }
  
  .service-seperator {
    width: 100%;
    height: 1px;
    background-color: var(--line-seperator-color);
  }

  .overview-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 100px;
  }
  
  .overview-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .overview-image {
    display: none !important;
  }
  
  .faq-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    width: 100%;
  }
  
  .faq-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .faq-section > div.container > p {
    text-align: center;
  }
}

@media screen and (max-width: 800px) {
  body {
    background-position: center 0%;
  }
  
  .hero {
    width: 100%;
    text-align: center;
  }

  .hero h1 {
    font-size: 34pt;
  }

  .hero p {
    font-size: 21pt;
  }
}