@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
  font-family: "Inter", serif;
  color: #284b63;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
}

body {
  background: #fffcfb;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  background: #e55d3a;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #e55d31;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  width: 90% !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 32px 64px;
}

.header {
  /* background-image: url("../images/bg.png"); */
  background: linear-gradient(rgba(239, 76, 35, 0.96), rgba(239, 76, 35, 0.95)),
    url("../images/bg.png");
  background-size: cover;
  background-position: center;
}

.header header {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: flex-end;
}

.header__content {
  max-width: 680px;
  padding-bottom: 60px;
  display: flex;
  gap: 16px;
  flex-direction: column;
  align-items: center;
}

.header__content__title {
  font-size: 3rem;
  line-height: 3.5rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.header__content__subtitle {
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-weight: 400;
  color: #fff;
  text-align: center;
}

.header__content__search {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  width: 100%;
}

.header__content__search__input {
  flex: 1;
  border: none;
  padding: 12px 15px;
  font-size: 1rem;
  outline: none;
}

.header__content__search__button {
  background: white;
  border: none;
  padding: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #ccc;
}

.header__content__search__button:hover {
  background: #f0f0f0;
}

.container-grid {
  max-width: 1240px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 100px;
  margin: auto;
  padding: 20px;
  margin-top: 46px;
}
.faq {
}

.faq__title {
  font-size: 2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1b1311;
}
.faq__title::before {
  content: "";
  width: 8px;
  height: 32px;
  background-color: #e55d3a;
  border-radius: 2px;
}

.faq__title:not(:first-of-type) {
  padding-top: 40px;
}

.faq__questions {
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq__questions button {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
  border: 1px solid #2f1b5233;
  padding: 16px;
  background: #fff;
  text-align: left;
}
.faq__questions button:hover {
  cursor: pointer;
}

.faq__question {
  font-size: 1.5rem;
  color: #000;
  font-weight: 500;
  line-height: 1.875rem;
}

.faq__question::after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url(../images/plus.svg);
}

.faq button[aria-expanded="true"]::after {
  transform: rotate(45deg);
  transition: 0.5;
}

.faq__response {
  display: none;
}
.faq__response.active {
  display: block;
}

.faq__response {
  font-size: 1.25rem;
  color: #000;
  font-weight: 400;
  line-height: 1.5rem;
  padding: 16px 32px 16px 0px;
}
.sidebar {
  max-width: 300px;
  height: max-content;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.sidebar h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2rem;
  color: #ef4c23;
}
.sidebar li + li {
  margin-top: 16px;
}
.sidebar a {
  font-size: 1.25rem;
  line-height: 1.625rem;
  font-weight: 500;
  color: #424242;
}

.sidebar a .faq__title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 2.625rem;
  color: #1b1311;
}

.sidebar__contact span {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5rem;
  color: #414141;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: #1b1311;
  padding: 32px;
  margin-top: 65px;
}

footer p,
span {
  color: #fff;
  text-align: center;
}

footer p {
  font-size: 1.125rem;
}
footer span {
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .container {
    padding: 32px;
    width: 100% !important;
  }
  .header__content__title {
    font-size: 1.625rem;
    line-height: 2.3rem;
  }
  .container-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sidebar {
    max-width: 100%;
    grid-row: 1;
    margin-bottom: 32px;
  }
  .sidebar a,
  .sidebar__contact span {
    font-size: 1rem;
  }
  .faq__title {
    font-size: 1.7rem;
  }
  .faq__question {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }

  .faq__response {
    font-size: 1rem;
  }

  footer p {
    font-size: 1rem;
  }
  footer span {
    font-size: 0.75rem;
  }
}
