/* ===================================
   CSS Variables & Reset
   =================================== */
:root {
  /* Colors */
  --color-primary: #78BDAE;
  --color-primary-dark: #3D8B7A; /* AA compliant for text on white (4.5:1+) */
  --color-dark: #111111;
  --color-text: #111111;
  --color-text-secondary: #555555; /* Darkened for AA compliance (7:1+) */
  --color-bg: #FAFAFA;
  --color-white: #FFFFFF;
  --color-border: #F5F5F5;
  --color-faq-bg: #D9E2E0;

  /* Typography */
  --font-family: 'Noto Sans JP', sans-serif;

  /* Spacing */
  --container-width: 1116px;
  --section-padding: 120px;
  --section-padding-tablet: 80px;
  --section-padding-mobile: 60px;

  /* Breakpoints */
  --breakpoint-tablet: 1024px;
  --breakpoint-mobile: 880px;
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text);
  background-color: var(--color-white);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ===================================
   Skip Link (Accessibility)
   =================================== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-dark);
  color: var(--color-white);
  padding: 12px 24px;
  font-weight: 700;
  z-index: 10000;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 10px;
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

/* ===================================
   Focus Styles (Accessibility)
   =================================== */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus,
[tabindex]:focus {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

/* ===================================
   Layout
   =================================== */
main {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

section {
  width: 100%;
  max-width: 100%;
}

.container {
  max-width: var(--container-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===================================
   Header
   =================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--color-white);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 67px;
  max-width: 100%;
}

.header__logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header__nav-list {
  display: flex;
  gap: 40px;
}

.header__nav-list a {
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  color: var(--color-text);
  transition: color 0.3s ease;
}

.header__nav-list a:hover {
  color: var(--color-primary-dark);
}

.header__nav-active {
  color: var(--color-primary) !important;
}

.header__cta {
  display: inline-block;
  padding: 25px 24px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  transition: opacity 0.3s ease;
}

.header__cta:hover {
  opacity: 0.8;
}

.header__hamburger {
  display: none;
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.header__hamburger span:nth-child(1) {
  top: 0;
}

.header__hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.header__hamburger span:nth-child(3) {
  bottom: 0;
}

.header__hamburger.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
  margin-top: 67px;
  width: 100%;
  max-width: 100%;
}

.hero__image {
  width: 100%;
  height: auto;
  display: block;
}

/* ===================================
   Section Header
   =================================== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header__sub {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 24px;
  margin-bottom: 15px;
}

.section-header--reverse .section-header__sub {
  margin-bottom: 0;
  margin-top: 15px;
}

.section-header--reverse .section-header__title {
  margin-bottom: 0;
}

.section-header__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.05em;
}

/* ===================================
   About Section
   =================================== */
.about {
  padding: var(--section-padding) 0;
  background: var(--color-white);
}

.about__description {
  text-align: center;
  font-size: 18px;
  line-height: 32px;
  color: var(--color-text-secondary);
  margin-bottom: 60px;
}

/* Info Table */
.info-table {
  max-width: 1055px;
  margin: 0 auto;
  border-top: 1px solid #ccc;
}

.info-table__row {
  display: flex;
  border-bottom: 1px solid #ccc;
}

.info-table__label {
  width: 200px;
  flex-shrink: 0;
  padding: 30px;
  font-size: 16px;
  font-weight: 700;
  background: var(--color-white);
}

.info-table__value {
  flex: 1;
  padding: 30px 50px;
  font-size: 16px;
  line-height: 28px;
}

.info-table__value strong {
  font-weight: 700;
}

/* ===================================
   CTA Section
   =================================== */
.cta {
  padding: 80px 0;
  background: var(--color-bg);
  text-align: center;
}

.cta__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}

.cta__description {
  font-size: 16px;
  color: var(--color-text-secondary);
  margin-bottom: 30px;
}

/* ===================================
   Buttons
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 80px;
  font-size: 14px;
  font-weight: 700;
  transition: opacity 0.3s ease;
  position: relative;
}

.btn:hover {
  opacity: 0.8;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 0;
  position: relative;
  padding: 20px 80px;
  font-size: 18px;
  font-weight: 700;
  line-height: 32px;
  text-decoration: underline;
}

.btn--primary .btn__arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
}

.btn--dark {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 15px 60px;
}

.btn__arrow {
  width: 24px;
  height: 24px;
}

/* ===================================
   Problem Section
   =================================== */
.problem {
  padding: var(--section-padding) 0;
  background: var(--color-white);
}

.problem-list {
  display: flex;
  gap: 40px;
  justify-content: center;
}

.problem-item {
  width: 345px;
  text-align: center;
}

.problem-item__image {
  width: 100%;
  height: 250px;
  margin-bottom: 20px;
  overflow: hidden;
  background: #f0f0f0;
}

.problem-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.problem-item__text {
  font-size: 18px;
  font-weight: 700;
  line-height: 32px;
  color: var(--color-text);
}

/* ===================================
   Consultation Section
   =================================== */
.consultation {
  padding: var(--section-padding) 0;
  background: var(--color-white);
}

.benefits {
  display: flex;
  gap: 40px;
  justify-content: center;
}

.benefit-card {
  flex: 1;
  max-width: 345px;
  padding: 40px;
  border: 1px solid var(--color-primary);
  text-align: center;
}

.benefit-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 10px;
}

.benefit-card__icon svg {
  width: 100%;
  height: 100%;
}

.benefit-card__text {
  font-size: 18px;
  font-weight: 700;
  line-height: 32px;
  color: var(--color-text);
}

.consultation__description {
  text-align: center;
  font-size: 16px;
  line-height: 28px;
  color: var(--color-text-secondary);
  margin-top: 50px;
}

/* Consultation Extra Block */
.consultation__extra {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 60px;
  background: var(--color-white);
}

.consultation__extra-content {
  flex: 1;
  padding: 60px 40px 60px 80px;
}

.consultation__extra-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  line-height: 1.4;
}

.consultation__extra-subtitle {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  line-height: 1.4;
}

.consultation__extra-description {
  font-size: 16px;
  line-height: 28px;
  color: var(--color-text-secondary);
  margin-bottom: 30px;
}

.consultation__extra-image {
  width: 50%;
  flex-shrink: 0;
  height: 400px;
  overflow: hidden;
}

.consultation__extra-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn--secondary {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 14px 80px;
  border-radius: 50px;
}

/* ===================================
   Points Section
   =================================== */
.points {
  padding: var(--section-padding) 0;
  background: var(--color-white);
}

.point-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.point-item {
  display: flex;
  align-items: center;
}

.point-item--reverse {
  flex-direction: row-reverse;
}

.point-item__image {
  width: 451px;
  max-width: 100%;
  height: 360px;
  flex-shrink: 0;
  background: #f0f0f0;
  overflow: hidden;
}

.point-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.point-item__content {
  flex: 1;
  padding: 0 80px;
}

.point-item__label {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
}

.point-item__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.05em;
  margin-bottom: 25px;
}

.point-item__description {
  font-size: 16px;
  line-height: 28px;
  color: var(--color-text-secondary);
  margin-bottom: 25px;
}

.text-accent {
  color: var(--color-primary);
}

/* ===================================
   Flow Section
   =================================== */
.flow {
  padding: var(--section-padding) 0 60px;
  background: var(--color-white);
}

.flow-list {
  display: flex;
  gap: 80px;
  justify-content: center;
}

.flow-item {
  width: 282px;
  text-align: center;
}

.flow-item__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.05em;
  margin-bottom: 15px;
}

.flow-item__description {
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
  color: var(--color-text);
  margin-bottom: 30px;
}

.flow-item__image {
  width: 208px;
  max-width: 100%;
  height: 163px;
  margin: 0 auto;
  background: #f0f0f0;
  overflow: hidden;
}

.flow-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===================================
   Access Section
   =================================== */
.access {
  padding: var(--section-padding) 0 60px;
  background: var(--color-white);
}

.access__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.access__info {
  flex: 1;
}

.access__venue {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.05em;
  margin-bottom: 50px;
}

.access__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.access__row {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.access__label {
  font-size: 18px;
  font-weight: 700;
  line-height: 32px;
  flex-shrink: 0;
}

.access__value {
  font-size: 16px;
  line-height: 28px;
}

.access__map {
  width: 641px;
  max-width: 100%;
  height: 460px;
  flex-shrink: 0;
  background: #f0f0f0;
}

.access__map iframe {
  width: 100%;
  height: 100%;
}

/* ===================================
   Companies Section
   =================================== */
.companies {
  padding: var(--section-padding) 0 60px;
  background: var(--color-white);
}

.companies__session {
  margin-bottom: 60px;
}

.companies__session-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
  line-height: 24px;
  margin-bottom: 40px;
}

.companies__table-wrapper {
  overflow-x: auto;
}

.companies__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  table-layout: fixed;
}

.companies__table th,
.companies__table td {
  padding: 10px 12px;
  border: 1px solid #B9B9B9;
  text-align: left;
  word-wrap: break-word;
}

.companies__table th:nth-child(1) { width: 20%; }
.companies__table th:nth-child(2) { width: 20%; }
.companies__table th:nth-child(3) { width: 7%; }
.companies__table th:nth-child(4) { width: 17%; }
.companies__table th:nth-child(5) { width: 26%; }
.companies__table th:nth-child(6) { width: 10%; }

.companies__table th {
  background: rgba(0, 0, 0, 0.06);
  font-weight: 600;
}

.companies__table td {
  background: var(--color-white);
}

/* PDF Link Styles */
.pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--color-primary-dark);
  text-decoration: underline;
  font-weight: 600;
}

.pdf-link:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.pdf-link:focus {
  outline: 2px solid var(--color-primary-dark);
  outline-offset: 2px;
}

.pdf-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--color-primary-dark);
}

/* ===================================
   FAQ Section
   =================================== */
.faq {
  padding: var(--section-padding) 0;
  background: var(--color-faq-bg);
}

.faq-list {
  max-width: 926px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.faq-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item__question {
  display: flex;
  align-items: center;
  gap: 20px;
}

.faq-item__q {
  width: 40px;
  height: 40px;
  background: var(--color-dark);
  color: var(--color-white);
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-item__question-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.05em;
}

.faq-item__answer {
  background: var(--color-bg);
  padding: 25px 30px;
}

.faq-item__answer p {
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  color: var(--color-text-secondary);
}

/* ===================================
   Footer
   =================================== */
.footer__main {
  padding: 112px 0;
  position: relative;
}

.footer__content {
  display: flex;
  justify-content: center;
  gap: 100px;
}

.footer__logo p {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.footer__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__info p {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 28px;
}

.footer__back-to-top {
  position: absolute;
  right: 40px;
  top: 0;
  width: 50px;
  height: 50px;
  background: var(--color-dark);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.footer__back-to-top:hover {
  opacity: 0.8;
}

.footer__back-to-top svg {
  width: 24px;
  height: 24px;
}

.footer__bottom {
  background: var(--color-primary);
  padding: 18px 40px;
}

.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copyright {
  font-size: 12px;
  color: var(--color-white);
}

.footer__links {
  display: flex;
  gap: 30px;
}

.footer__links a {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-white);
  text-decoration: underline;
}

/* ===================================
   Responsive - Tablet (1024px)
   =================================== */
@media (max-width: 1024px) {
  :root {
    --section-padding: var(--section-padding-tablet);
  }

  .container {
    padding: 0 30px;
  }

  /* Header */
  .header__inner {
    padding: 0 30px;
  }

  .header__nav-list {
    gap: 25px;
  }

  .header__logo {
    font-size: 16px;
  }

  /* Hero */
  .hero {
    margin-top: 67px;
  }

  /* Info Table */
  .info-table__label {
    width: 150px;
    padding: 20px;
  }

  .info-table__value {
    padding: 20px 30px;
  }

  /* Benefits */
  .benefits {
    gap: 20px;
  }

  .benefit-card {
    padding: 30px 20px;
  }

  /* Points */
  .point-item__image {
    width: 350px;
    height: 280px;
  }

  .point-item__content {
    padding: 0 40px;
  }

  .point-item__title {
    font-size: 24px;
  }

  /* Flow */
  .flow-list {
    gap: 40px;
  }

  .flow-item {
    width: 240px;
  }

  /* Access */
  .access__content {
    flex-direction: column;
  }

  .access__info {
    width: 100%;
    text-align: center;
  }

  .access__venue {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .access__details {
    align-items: center;
  }

  .access__row {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

  .access__map {
    width: 100%;
    height: 400px;
  }

  /* Problem */
  .problem-list {
    gap: 20px;
  }

  .problem-item {
    width: 280px;
  }

  .problem-item__image {
    height: 200px;
  }

  .problem-item__text {
    font-size: 16px;
  }

  /* Consultation Extra */
  .consultation__extra {
    gap: 0;
  }

  .consultation__extra-content {
    padding: 40px 30px 40px 40px;
  }

  .consultation__extra-title {
    font-size: 28px;
  }

  .consultation__extra-subtitle {
    font-size: 16px;
  }

  .consultation__extra-image {
    width: 45%;
    height: 350px;
  }

  /* Footer */
  .footer__content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }

  .footer__info {
    align-items: center;
  }
}

/* ===================================
   Responsive - Mobile (880px)
   =================================== */
@media (max-width: 880px) {
  :root {
    --section-padding: var(--section-padding-mobile);
  }

  .container {
    padding: 0 20px;
  }

  /* Header - Hamburger Menu */
  .header__inner {
    padding: 0 20px;
    height: 60px;
  }

  .header__hamburger {
    display: block;
  }

  .header__nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .header__nav.active {
    transform: translateX(0);
  }

  .header__nav-list {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .header__nav-list a {
    font-size: 18px;
  }

  .header__cta {
    padding: 15px 40px;
  }

  .header__logo {
    font-size: 14px;
  }

  /* Hero */
  .hero {
    margin-top: 60px;
  }

  /* Section Header */
  .section-header__title {
    font-size: 24px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  /* About */
  .about__description {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 40px;
  }

  /* Info Table */
  .info-table__row {
    flex-direction: column;
  }

  .info-table__label {
    width: 100%;
    padding: 15px 20px;
    background: var(--color-bg);
  }

  .info-table__value {
    padding: 15px 20px;
  }

  /* CTA */
  .cta {
    padding: 60px 0;
  }

  .cta__title {
    font-size: 24px;
  }

  .btn {
    padding: 15px 40px;
    font-size: 13px;
  }

  /* Benefits */
  .benefits {
    flex-direction: column;
    align-items: center;
  }

  .benefit-card {
    width: 100%;
    max-width: 300px;
  }

  .benefit-card__icon {
    width: 48px;
    height: 48px;
  }

  .benefit-card__text {
    font-size: 16px;
  }

  .consultation__description {
    font-size: 14px;
    line-height: 24px;
    margin-top: 30px;
  }

  /* Consultation Extra */
  .consultation__extra {
    flex-direction: column-reverse;
    gap: 0;
    margin-top: 40px;
  }

  .consultation__extra-content {
    text-align: center;
    padding: 30px 20px;
  }

  .consultation__extra-title {
    font-size: 24px;
    text-align: center;
  }

  .consultation__extra-subtitle {
    font-size: 16px;
    text-align: center;
  }

  .consultation__extra-description {
    font-size: 14px;
    line-height: 24px;
    text-align: center;
  }

  .consultation__extra-image {
    width: 100%;
    height: 250px;
  }

  /* Problem */
  .problem-list {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .problem-item {
    width: 100%;
    max-width: 300px;
  }

  .problem-item__image {
    height: 200px;
  }

  .problem-item__text {
    font-size: 16px;
    line-height: 28px;
  }

  /* Points */
  .point-list {
    gap: 50px;
  }

  .point-item,
  .point-item--reverse {
    flex-direction: column;
  }

  .point-item__image {
    width: 100%;
    height: 250px;
  }

  .point-item__content {
    padding: 30px 0 0;
    text-align: center;
  }

  .point-item__title {
    font-size: 20px;
  }

  .point-item__description {
    font-size: 14px;
  }

  .btn--dark {
    padding: 12px 40px;
  }

  /* Flow */
  .flow-list {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }

  .flow-item {
    width: 100%;
    max-width: 300px;
  }

  .flow-item__title {
    font-size: 18px;
  }

  .flow-item__description {
    font-size: 14px;
  }

  /* Access */
  .access__venue {
    font-size: 24px;
  }

  .access__label {
    font-size: 16px;
  }

  .access__value {
    font-size: 14px;
  }

  .access__map {
    height: 300px;
  }

  /* Companies */
  .companies__session-title {
    font-size: 12px;
  }

  .companies__table {
    font-size: 11px;
  }

  .companies__table th,
  .companies__table td {
    padding: 8px;
  }

  /* FAQ */
  .faq-item__question {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .faq-item__question-text {
    font-size: 16px;
  }

  .faq-item__answer {
    padding: 20px;
  }

  .faq-item__answer p {
    font-size: 13px;
  }

  /* Footer */
  .footer__main {
    padding: 60px 0;
  }

  .footer__logo p {
    font-size: 18px;
  }

  .footer__info p {
    font-size: 14px;
  }

  .footer__back-to-top {
    right: 20px;
    width: 40px;
    height: 40px;
  }

  .footer__bottom {
    padding: 15px 20px;
  }

  .footer__bottom .container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer__links {
    flex-direction: column;
    gap: 10px;
  }

  .footer__copyright,
  .footer__links a {
    font-size: 11px;
  }
}

/* ===================================
   Utility Classes
   =================================== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
