/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
  min-height: 100vh;
}

/* Accessibility: visually hidden but available to screen readers */
.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;
}

/* =============================================
   HEADER / NAV
   ============================================= */
.site-header {
  background-color: #000000;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
}

.nav__logo {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.nav__logo:hover,
.nav__logo:focus-visible {
  color: #f5c518;
  outline: none;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  transition: background-color 0.15s ease;
}

.lang-btn:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

.lang-btn:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.lang-btn__icon {
  flex-shrink: 0;
}

.lang-btn__chevron {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.lang-btn[aria-expanded="true"] .lang-btn__chevron {
  transform: rotate(180deg);
}

/* ─── Language switcher wrapper ─── */
.lang-switcher {
  position: relative;
}

/* ─── Dropdown ─── */
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 148px;
  background-color: #1a1a1a;
  border: 1px solid #333333;
  border-radius: 10px;
  list-style: none;
  padding: 0.4rem 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  z-index: 200;
  /* visibility yerine display kullanmıyoruz — transition her iki yönde çalışsın */
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
}

.lang-dropdown.is-open {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0s;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1rem;
  color: #cccccc;
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 6px;
  margin: 0 0.3rem;
  transition: background-color 0.12s ease, color 0.12s ease;
  outline: none;
}

.lang-option:hover,
.lang-option:focus-visible {
  background-color: #2d2d2d;
  color: #ffffff;
}

.lang-option--active {
  color: #ffffff;
  font-weight: 600;
}

.lang-option--active::after {
  content: '';
  display: inline-block;
  margin-left: auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #f5c518;
}

.lang-option__flag {
  font-size: 1.1rem;
  line-height: 1;
}

/* =============================================
   MAIN / HERO SECTION
   ============================================= */
.main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  min-height: calc(100vh - 64px);
  padding: 3rem 0;
}

/* =============================================
   HERO — LEFT CONTENT
   ============================================= */
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Location badge */
.location-badge {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: #1a1a1a;
}

.location-badge__icon {
  flex-shrink: 0;
  color: #1a1a1a;
}

.location-badge__change {
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-size: 0.9rem;
  margin-left: 0.1rem;
}

.location-badge__change:hover,
.location-badge__change:focus-visible {
  color: #000;
  outline: none;
}

/* Heading */
.hero__heading {
  font-size: clamp(2rem, 2.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}

/* Pickup selector */
.pickup-selector {
  display: flex;
}

.pickup-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background-color: #f0f0f0;
  border: none;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #1a1a1a;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.pickup-btn:hover {
  background-color: #e0e0e0;
}

.pickup-btn:focus-visible {
  outline: 2px solid #1a1a1a;
  outline-offset: 2px;
}

.pickup-btn__icon {
  flex-shrink: 0;
}

.pickup-btn__chevron {
  flex-shrink: 0;
  margin-left: 0.1rem;
  transition: transform 0.2s ease;
}

.pickup-btn[aria-expanded="true"] .pickup-btn__chevron {
  transform: rotate(180deg);
}

/* Pickup type wrapper */
.pickup-selector {
  position: relative;
  display: inline-flex;
}

/* Pickup type dropdown */
.pickup-type-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  list-style: none;
  padding: 0.4rem 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
  z-index: 500;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.pickup-type-dropdown.is-open {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.pickup-type-option {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.1rem;
  font-size: 0.95rem;
  color: #1a1a1a;
  cursor: pointer;
  outline: none;
  transition: background-color 0.12s ease;
}

.pickup-type-option:hover,
.pickup-type-option:focus {
  background-color: #f5f5f5;
}

.pickup-type-option--active {
  font-weight: 600;
}

.pickup-type-option--active::after {
  content: '';
  display: inline-block;
  margin-left: auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #1a1a1a;
  flex-shrink: 0;
}

/* =============================================
   RIDE FORM
   ============================================= */
.ride-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ride-form__fieldset {
  border: none;
  display: flex;
  flex-direction: column;
  background-color: #f6f6f6;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.ride-form__field {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  position: relative;
  background-color: #ffffff;
}

.ride-form__field + .ride-form__field {
  border-top: 1px solid #e8e8e8;
}

/* Vertical connector line between dots */
.ride-form__field:first-of-type::after {
  content: '';
  position: absolute;
  left: calc(1rem + 7px);
  bottom: -1px;
  width: 2px;
  height: 100%;
  background: repeating-linear-gradient(
    to bottom,
    #bbb 0px,
    #bbb 4px,
    transparent 4px,
    transparent 8px
  );
  z-index: 1;
  transform: translateY(50%);
  pointer-events: none;
}

/* Origin dot (circle) */
.ride-form__dot {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  z-index: 2;
}

.ride-form__dot--circle {
  border: 2px solid #1a1a1a;
  border-radius: 50%;
  background: #ffffff;
}

.ride-form__dot--square {
  background: #1a1a1a;
  border-radius: 3px;
}

.ride-form__input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 1rem;
  color: #1a1a1a;
  outline: none;
  padding: 0;
}

.ride-form__input::placeholder {
  color: #888888;
}

.ride-form__locate, .ride-form__map-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 4px;
  transition: color 0.15s ease;
  flex-shrink: 0;
  position: relative;
}

.ride-form__locate:hover, .ride-form__map-btn:hover {
  color: #1a1a1a;
}

.ride-form__locate:focus-visible, .ride-form__map-btn:focus-visible {
  outline: 2px solid #1a1a1a;
  outline-offset: 2px;
}

/* Loading spinner on locate button */
.ride-form__locate.is-loading svg {
  opacity: 0;
}

.ride-form__locate.is-loading::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid #ccc;
  border-top-color: #1a1a1a;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* =============================================
   MAP MODAL
   ============================================= */
.map-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.map-modal[hidden] {
  display: none;
}

.map-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.map-modal__card {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 16px;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  animation: modalIn 0.22s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(12px); }
  to   { opacity: 1; transform: scale(1)    translateY(0); }
}

.map-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem 0.75rem;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
}

.map-modal__title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
}

.map-modal__close {
  background: transparent;
  border: none;
  cursor: pointer;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 6px;
  transition: background-color 0.15s ease, color 0.15s ease;
  flex-shrink: 0;
}

.map-modal__close:hover {
  background-color: #f0f0f0;
  color: #1a1a1a;
}

.map-modal__close:focus-visible {
  outline: 2px solid #1a1a1a;
  outline-offset: 2px;
}

.map-modal__hint {
  font-size: 0.82rem;
  color: #888;
  padding: 0.5rem 1.25rem 0.6rem;
  flex-shrink: 0;
}

.map-modal__map {
  flex: 1;
  min-height: 340px;
  background: #e8e8e8;
}

.map-modal__bottom {
  flex-shrink: 0;
  border-top: 1px solid #f0f0f0;
}

.map-modal__address {
  font-size: 0.85rem;
  color: #444;
  padding: 0.7rem 1.25rem 0.5rem;
  min-height: 2.4rem;
  line-height: 1.4;
}

.map-modal__address:empty {
  display: none;
}

.map-modal__footer {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  padding: 0.6rem 1.25rem 1rem;
}

.map-modal__btn {
  border: none;
  border-radius: 8px;
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.15s ease, opacity 0.15s ease;
}

.map-modal__btn--cancel {
  background-color: #f0f0f0;
  color: #1a1a1a;
}

.map-modal__btn--cancel:hover {
  background-color: #e2e2e2;
}

.map-modal__btn--confirm {
  background-color: #1a1a1a;
  color: #ffffff;
}

.map-modal__btn--confirm:hover:not(:disabled) {
  background-color: #333;
}

.map-modal__btn--confirm:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.map-modal__btn:focus-visible {
  outline: 2px solid #1a1a1a;
  outline-offset: 2px;
}

/* Responsive modal */
@media (max-width: 600px) {
  .map-modal {
    padding: 0;
    align-items: flex-end;
  }

  .map-modal__card {
    max-width: 100%;
    border-radius: 16px 16px 0 0;
    max-height: 92vh;
  }

  .map-modal__map {
    min-height: 280px;
  }
}

/* Input error state */
.ride-form__input--error {
  color: #c0392b;
}

.field-error {
  font-size: 0.8rem;
  color: #c0392b;
  padding: 0.3rem 1rem 0.3rem calc(1rem + 16px + 0.75rem);
  background-color: #fff5f5;
  border-left: 3px solid #c0392b;
  margin: 0;
  animation: fadeIn 0.15s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   AUTOCOMPLETE DROPDOWN
   ============================================= */
.ac-suggestions {
  display: none;
  position: absolute;
  z-index: 9999;
  list-style: none;
  margin: 0;
  padding: 0.35rem 0;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  max-height: 260px;
  overflow-y: auto;
  /* Scrollbar ince */
  scrollbar-width: thin;
  scrollbar-color: #ddd transparent;
}

.ac-suggestions::-webkit-scrollbar {
  width: 4px;
}
.ac-suggestions::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 4px;
}

.ac-suggestions.is-open {
  display: block;
  animation: acFadeIn 0.15s ease;
}

@keyframes acFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ac-suggestion {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
  color: #1a1a1a;
  cursor: pointer;
  line-height: 1.35;
  outline: none;
  transition: background-color 0.1s ease;
}

.ac-suggestion:hover,
.ac-suggestion:focus {
  background-color: #f5f5f5;
}

.ac-suggestion__icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: #888;
}

.ac-suggestion__text {
  flex: 1;
  word-break: break-word;
}

/* Submit button */
.ride-form__submit {
  background-color: #1a1a1a;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  width: fit-content;
  min-width: 120px;
  transition: background-color 0.15s ease, transform 0.1s ease;
}

.ride-form__submit:hover {
  background-color: #333333;
}

.ride-form__submit:active {
  transform: scale(0.98);
}

.ride-form__submit:focus-visible {
  outline: 2px solid #1a1a1a;
  outline-offset: 3px;
}

/* =============================================
   HERO — RIGHT IMAGE
   ============================================= */
.hero__image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background-color: #f0f4ff;
  padding: 2rem;
  /* Colorful dot border effect — mimics the original design */
  border: 4px solid transparent;
  background-clip: padding-box;
  box-shadow:
    0 0 0 4px #ffffff,
    4px 0 0 4px #f5a623,
    -4px 0 0 4px #e8335a,
    0 4px 0 4px #3b82f6,
    0 -4px 0 4px #f5a623,
    6px 6px 0 4px #3b82f6,
    -6px -6px 0 4px #e8335a,
    6px -6px 0 4px #f5a623,
    -6px 6px 0 4px #3b82f6;
}

.hero__image-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #fef9ec 0%, #e8f4ff 100%);
  z-index: 0;
}

.hero__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  max-width: 520px;
  display: block;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background-color: #111111;
  color: #cccccc;
  margin-top: 4rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 2rem 2.5rem;
}

/* Brand */
.footer__logo {
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.footer__logo:hover,
.footer__logo:focus-visible {
  color: #f5c518;
  outline: none;
}

.footer__tagline {
  font-size: 0.875rem;
  color: #888888;
  line-height: 1.5;
}

/* Nav columns */
.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__col-heading {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer__link {
  color: #aaaaaa;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s ease;
}

.footer__link:hover,
.footer__link:focus-visible {
  color: #ffffff;
  outline: none;
}

/* Contact & social */
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__social {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #aaaaaa;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s ease;
}

.footer__social-link:hover,
.footer__social-link:focus-visible {
  color: #ffffff;
  outline: none;
}

.footer__address {
  font-style: normal;
  font-size: 0.875rem;
  line-height: 1.7;
  margin-top: 0.5rem;
}

/* Bottom bar */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  border-top: 1px solid #2a2a2a;
}

.footer__copy {
  font-size: 0.825rem;
  color: #666666;
}

.footer__bottom-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.footer__bottom-links .footer__link {
  font-size: 0.825rem;
  color: #666666;
}

.footer__bottom-links .footer__link:hover {
  color: #aaaaaa;
}

/* =============================================
   RESPONSIVE
   ============================================= */

/* Tablet — ≤ 900px */
@media (max-width: 900px) {
  .hero {
    gap: 2rem;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer__nav {
    grid-template-columns: repeat(3, 1fr);
    grid-column: 1 / -1;
  }
}

/* Mobile landscape — ≤ 768px */
@media (max-width: 768px) {
  .nav {
    padding: 0 1rem;
  }

  .main {
    padding: 0 1rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: unset;
    padding: 2rem 0;
    gap: 2rem;
  }

  .hero__image-wrapper {
    order: -1;
    padding: 1.25rem;
  }

  .hero__heading {
    font-size: 1.75rem;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 1rem 2rem;
  }

  .footer__nav {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .footer__contact {
    border-top: 1px solid #2a2a2a;
    padding-top: 1.5rem;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem 1rem;
    gap: 0.5rem;
  }
}

/* Mobile portrait — ≤ 480px */
@media (max-width: 480px) {
  .nav__logo {
    font-size: 0.95rem;
  }

  .hero__heading {
    font-size: 1.4rem;
  }

  .hero__content {
    gap: 1.1rem;
  }

  .footer__nav {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .footer__nav .footer__col:last-child {
    grid-column: 1 / -1;
  }

  .footer__bottom-links {
    gap: 1rem;
  }
}

/* =============================================
   SEO SECTION
   ============================================= */
.seo-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.seo-card {
  background: #fdfdfd;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.seo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}

.seo-card h3 {
  font-size: 1.25rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.seo-card p {
  color: #4a4a4a;
  line-height: 1.6;
  font-size: 0.95rem;
}

.seo-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.seo-header h2 {
  font-size: clamp(1.8rem, 2vw, 2.2rem);
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.seo-header p {
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  font-size: 1.05rem;
}

.seo-faq {
  margin-top: 4.5rem;
  background: #fdfdfd;
  border-radius: 16px;
  padding: 3rem 2rem;
  border: 1px solid #eaeaea;
}

.seo-faq h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 800;
  color: #1a1a1a;
}

.faq-item {
  border-bottom: 1px solid #eee;
  padding: 1.5rem 0;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  font-size: 1.1rem;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.faq-item p {
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .seo-section {
    padding: 3rem 1rem;
  }
  .seo-faq {
    padding: 2rem 1rem;
  }
}
