/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/.pnpm/next@15.4.10_@babel+core@7.28.6_@playwright+test@1.56.1_react-dom@19.2.3_react@19.2.3__react@19.2.3_sass@1.77.4/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[11].use[2]!./node_modules/.pnpm/next@15.4.10_@babel+core@7.28.6_@playwright+test@1.56.1_react-dom@19.2.3_react@19.2.3__react@19.2.3_sass@1.77.4/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[11].use[3]!./node_modules/.pnpm/next@15.4.10_@babel+core@7.28.6_@playwright+test@1.56.1_react-dom@19.2.3_react@19.2.3__react@19.2.3_sass@1.77.4/node_modules/next/dist/build/webpack/loaders/resolve-url-loader/index.js??ruleSet[1].rules[13].oneOf[11].use[4]!./node_modules/.pnpm/next@15.4.10_@babel+core@7.28.6_@playwright+test@1.56.1_react-dom@19.2.3_react@19.2.3__react@19.2.3_sass@1.77.4/node_modules/next/dist/compiled/sass-loader/cjs.js??ruleSet[1].rules[13].oneOf[11].use[5]!./src/components/FAQ/FAQ.scss ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
.FAQ {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, var(--white) 100%);
}
.FAQ__header {
  text-align: center;
  margin-bottom: 48px;
}
.FAQ__title {
  font-size: 36px;
  font-weight: 700;
  color: var(--darkBlue);
  margin: 0 0 16px 0;
  line-height: 1.2;
}
.FAQ__subtitle {
  font-size: 18px;
  color: var(--darkGray);
  margin: 0;
  line-height: 1.5;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.FAQ__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.FAQ__item {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}
.FAQ__item:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}
.FAQ__item--open .FAQ__question-icon {
  transform: rotate(180deg);
}
.FAQ__item--open .FAQ__answer {
  max-height: 500px;
  opacity: 1;
}
.FAQ__question {
  width: 100%;
  padding: 24px 32px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: all 0.3s ease;
}
.FAQ__question:hover {
  background: rgba(var(--lightGreen-rgb), 0.05);
}
.FAQ__question:focus {
  outline: none;
  background: rgba(var(--lightGreen-rgb), 0.1);
}
.FAQ__question-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--darkBlue);
  line-height: 1.4;
  flex-grow: 1;
}
.FAQ__question-icon {
  color: var(--lightGreen);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.FAQ__answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.FAQ__answer--open {
  max-height: 500px;
  opacity: 1;
}
.FAQ__answer-content {
  padding: 0 32px 32px 32px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--textColor);
}
.FAQ__answer-content p {
  margin: 0 0 16px 0;
}
.FAQ__answer-content p:last-child {
  margin-bottom: 0;
}
.FAQ__answer-content strong {
  color: var(--darkBlue);
  font-weight: 600;
}
.FAQ__answer-content a {
  color: var(--lightGreen);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.FAQ__answer-content a:hover {
  color: var(--darkBlue);
  text-decoration: underline;
}
.FAQ__answer-content ul,
.FAQ__answer-content ol {
  margin: 0 0 16px 0;
  padding-left: 20px;
}
.FAQ__answer-content ul li,
.FAQ__answer-content ol li {
  margin-bottom: 8px;
  line-height: 1.6;
}
.FAQ__footer {
  text-align: center;
  margin-top: 48px;
}
.FAQ__view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--lightGreen);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.FAQ__view-all:hover {
  background: var(--darkBlue);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.FAQ__view-all:active {
  transform: translateY(0);
}

.FAQ--compact {
  padding: 80px 0;
}
.FAQ--compact .FAQ__title {
  font-size: 32px;
}
.FAQ--compact .FAQ__subtitle {
  font-size: 16px;
}
.FAQ--compact .FAQ__header {
  margin-bottom: 40px;
}
.FAQ--compact .FAQ__question {
  padding: 20px 24px;
}
.FAQ--compact .FAQ__question-text {
  font-size: 16px;
}
.FAQ--compact .FAQ__answer-content {
  padding: 0 24px 24px 24px;
  font-size: 15px;
}
.FAQ--dark {
  background: linear-gradient(135deg, var(--darkBlue) 0%, #1a237e 100%);
  color: var(--white);
}
.FAQ--dark .FAQ__title {
  color: var(--white);
}
.FAQ--dark .FAQ__subtitle {
  color: rgba(255, 255, 255, 0.8);
}
.FAQ--dark .FAQ__item {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.FAQ--dark .FAQ__question-text {
  color: var(--white);
}
.FAQ--dark .FAQ__answer-content {
  color: rgba(255, 255, 255, 0.9);
}
.FAQ--dark .FAQ__question:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1200px) {
  .FAQ__title {
    font-size: 32px;
  }
  .FAQ__subtitle {
    font-size: 16px;
  }
  .FAQ__header {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .FAQ__title {
    font-size: 28px;
  }
  .FAQ__subtitle {
    font-size: 15px;
  }
  .FAQ__header {
    margin-bottom: 32px;
  }
  .FAQ__list {
    gap: 12px;
  }
  .FAQ__question {
    padding: 18px 20px;
  }
  .FAQ__question-text {
    font-size: 16px;
  }
  .FAQ__answer-content {
    padding: 0 20px 20px 20px;
    font-size: 15px;
  }
  .FAQ__footer {
    margin-top: 32px;
  }
  .FAQ__view-all {
    padding: 14px 28px;
    font-size: 14px;
  }
  .FAQ--compact .FAQ__title {
    font-size: 24px;
  }
  .FAQ--compact .FAQ__question {
    padding: 16px 18px;
  }
  .FAQ--compact .FAQ__question-text {
    font-size: 15px;
  }
  .FAQ--compact .FAQ__answer-content {
    padding: 0 18px 18px 18px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .FAQ__title {
    font-size: 24px;
  }
  .FAQ__subtitle {
    font-size: 14px;
  }
  .FAQ__question {
    padding: 16px 18px;
    gap: 12px;
  }
  .FAQ__question-text {
    font-size: 15px;
  }
  .FAQ__question-icon {
    width: 18px;
    height: 18px;
  }
  .FAQ__answer-content {
    padding: 0 18px 18px 18px;
    font-size: 14px;
  }
  .FAQ__view-all {
    padding: 12px 24px;
    font-size: 13px;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.FAQ__header {
  animation: fadeInUp 0.6s ease forwards;
}
.FAQ__item {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}
.FAQ__item:nth-child(1) {
  animation-delay: 0.1s;
}
.FAQ__item:nth-child(2) {
  animation-delay: 0.2s;
}
.FAQ__item:nth-child(3) {
  animation-delay: 0.3s;
}
.FAQ__item:nth-child(4) {
  animation-delay: 0.4s;
}
.FAQ__item:nth-child(5) {
  animation-delay: 0.5s;
}
.FAQ__item:nth-child(6) {
  animation-delay: 0.6s;
}
.FAQ__item:nth-child(7) {
  animation-delay: 0.7s;
}
.FAQ__item:nth-child(8) {
  animation-delay: 0.8s;
}
.FAQ__footer {
  animation: fadeInUp 0.6s ease 0.4s forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}

.FAQ__question:focus-visible {
  outline: 2px solid var(--lightGreen);
  outline-offset: 2px;
}

.FAQ__view-all:focus-visible {
  outline: 2px solid var(--lightGreen);
  outline-offset: 2px;
}
/*!**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/.pnpm/next@15.4.10_@babel+core@7.28.6_@playwright+test@1.56.1_react-dom@19.2.3_react@19.2.3__react@19.2.3_sass@1.77.4/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[11].use[2]!./node_modules/.pnpm/next@15.4.10_@babel+core@7.28.6_@playwright+test@1.56.1_react-dom@19.2.3_react@19.2.3__react@19.2.3_sass@1.77.4/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[11].use[3]!./node_modules/.pnpm/next@15.4.10_@babel+core@7.28.6_@playwright+test@1.56.1_react-dom@19.2.3_react@19.2.3__react@19.2.3_sass@1.77.4/node_modules/next/dist/build/webpack/loaders/resolve-url-loader/index.js??ruleSet[1].rules[13].oneOf[11].use[4]!./node_modules/.pnpm/next@15.4.10_@babel+core@7.28.6_@playwright+test@1.56.1_react-dom@19.2.3_react@19.2.3__react@19.2.3_sass@1.77.4/node_modules/next/dist/compiled/sass-loader/cjs.js??ruleSet[1].rules[13].oneOf[11].use[5]!./src/pages/FAQPage/FAQPage.scss ***!
  \**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
.FAQPage {
  min-height: calc(100vh - 120px);
  padding: 32px 0 0 0;
}
.FAQPage__breadcrumbs {
  margin-bottom: 32px;
}
.FAQPage__breadcrumbs .breadcrumb-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}
.FAQPage__breadcrumbs .breadcrumb-item {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--darkGray);
}
.FAQPage__breadcrumbs .breadcrumb-item a {
  color: var(--darkGray);
  text-decoration: none;
  transition: color 0.3s ease;
}
.FAQPage__breadcrumbs .breadcrumb-item a:hover {
  color: var(--lightGreen);
}
.FAQPage__breadcrumbs .breadcrumb-item.active {
  color: var(--darkBlue);
  font-weight: 500;
  max-width: 250px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  vertical-align: middle;
}
.FAQPage__breadcrumbs .breadcrumb-item:not(:last-child)::after {
  content: ">";
  margin-left: 8px;
  color: var(--darkGray);
  font-size: 12px;
  flex-shrink: 0;
}
.FAQPage__header {
  text-align: center;
  margin-bottom: 64px;
  padding: 0 20px;
}
.FAQPage__title {
  font-size: 48px;
  font-weight: 700;
  color: var(--darkBlue);
  margin: 0 0 24px 0;
  line-height: 1.2;
}
.FAQPage__subtitle {
  font-size: 20px;
  color: var(--darkGray);
  margin: 0;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.FAQPage__faq {
  padding: 0;
  background: transparent;
}
.FAQPage__contact {
  margin: 80px 0;
  padding: 60px 0;
  background: linear-gradient(135deg, var(--darkBlue) 0%, #1a237e 100%);
  border-radius: 24px;
  color: var(--white);
  text-align: center;
}
.FAQPage__contact-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 32px;
}
.FAQPage__contact-content h2 {
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 16px 0;
  line-height: 1.3;
}
.FAQPage__contact-content p {
  font-size: 18px;
  opacity: 0.9;
  margin: 0 0 40px 0;
  line-height: 1.6;
}
.FAQPage__contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 24px;
  gap: 24px;
  margin-top: 32px;
}
.FAQPage__contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  text-decoration: none;
  color: var(--white);
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.FAQPage__contact-method:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.FAQPage__contact-method div {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.FAQPage__contact-method div strong {
  font-size: 16px;
  font-weight: 600;
}
.FAQPage__contact-method div span {
  font-size: 14px;
  opacity: 0.9;
}
.FAQPage__contact-icon {
  font-size: 32px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .FAQPage {
    padding: 24px 0 0 0;
  }
  .FAQPage__breadcrumbs {
    margin-bottom: 24px;
  }
  .FAQPage__breadcrumbs .breadcrumb-item {
    font-size: 13px;
  }
  .FAQPage__breadcrumbs .breadcrumb-item.active {
    max-width: 180px;
  }
  .FAQPage__header {
    margin-bottom: 48px;
    padding: 0 16px;
  }
  .FAQPage__title {
    font-size: 36px;
  }
  .FAQPage__subtitle {
    font-size: 18px;
  }
  .FAQPage__contact {
    margin: 60px 0;
    padding: 40px 0;
    border-radius: 20px;
  }
  .FAQPage__contact-content {
    padding: 0 20px;
  }
  .FAQPage__contact-content h2 {
    font-size: 28px;
  }
  .FAQPage__contact-content p {
    font-size: 16px;
  }
  .FAQPage__contact-methods {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .FAQPage__contact-method {
    padding: 20px;
    text-align: left;
  }
  .FAQPage__contact-method div strong {
    font-size: 15px;
  }
  .FAQPage__contact-method div span {
    font-size: 13px;
  }
  .FAQPage__contact-icon {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .FAQPage {
    padding: 20px 0 0 0;
  }
  .FAQPage__breadcrumbs {
    margin-bottom: 20px;
  }
  .FAQPage__breadcrumbs .breadcrumb-item {
    font-size: 12px;
  }
  .FAQPage__breadcrumbs .breadcrumb-item.active {
    max-width: 150px;
  }
  .FAQPage__header {
    margin-bottom: 40px;
    padding: 0 12px;
  }
  .FAQPage__title {
    font-size: 28px;
  }
  .FAQPage__subtitle {
    font-size: 16px;
  }
  .FAQPage__contact {
    margin: 48px 0;
    padding: 32px 0;
    border-radius: 16px;
  }
  .FAQPage__contact-content {
    padding: 0 16px;
  }
  .FAQPage__contact-content h2 {
    font-size: 24px;
  }
  .FAQPage__contact-content p {
    font-size: 15px;
    margin-bottom: 32px;
  }
  .FAQPage__contact-method {
    padding: 18px;
    border-radius: 12px;
  }
  .FAQPage__contact-method div strong {
    font-size: 14px;
  }
  .FAQPage__contact-method div span {
    font-size: 12px;
  }
  .FAQPage__contact-icon {
    font-size: 24px;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.FAQPage__breadcrumbs {
  animation: fadeInUp 0.6s ease forwards;
}
.FAQPage__header {
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}
.FAQPage__contact {
  animation: fadeInUp 0.6s ease 0.4s forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}

.FAQPage__contact-method:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
}
