.nav-toggle {
  display: none;
}

@media (min-width: 768px) and (max-width: 1024px) {

  .about-hero {
    background-position: 70% center;
  }
  /* Journal cards */
  .services {
    grid-template-columns: repeat(2, 1fr);
  }
  /* FAQ main layout */
  .section-faq {
    grid-template-columns: 1fr;
    gap: 50px;
    min-height: auto;
  }
  /* Apply form */
  .apply-grid {
    width: 90%;
    gap: 35px;
  }

}

@media (max-width: 767px) {

  .hero {
    background-position: 55% center;
  }
  .theweek-hero {
    background-position: 60% center;
  }
  .thehouse-hero {
    background-position: 70% center;
  }
  .post-travel-hero,
  .faq-hero {
    background-position: 7% center;
  }
  .most-holidays-hero {
    background-position: 12% center;
  }
  .different-rhythm-hero {
    background-position: 64% center;
  }
  .feels-different-hero {
    background-position: 85% center;
  }
  .simple-structure-hero {
    background-position: 58% center;
  }
  .navbar {
    padding: 8px 0;
  }
  .logo {
    padding-left: 20px;
  }
  .logo img {
    height: 50px;
  }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    position: absolute;
    right: 20px;
    padding: 10px;
    background: none;
    border: 0;
    cursor: pointer;
    z-index: 1002;
  }
  .nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--color-dark-gray);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .nav-toggle.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 30px 20px;
    background: var(--bg-dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }
  .nav-links.active {
    display: flex;
  }
  .nav-cta {
    margin-right: 0;
  }
  .media-block {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .media-block .media-image {
    order: 1;
  }
  .media-block .media-content {
    order: 2;
  }
  .media-image img {
    width: 100%;
  }
  .image-large img {
    width: 100%;
  }
  .image-group {
    gap: 8px;
  }
  .about-hero {
    background-position: 72% center;
  }
  .services {
    grid-template-columns: 1fr;
  }
  .card-row {
    grid-template-columns: 1fr;
  }
  .row-image img {
    -webkit-mask-image: none;
    mask-image: none;
  }
  .section-faq {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .faq-question {
    gap: 20px;
  }
  .apply-section {
    min-height: auto;
  }
  .apply-grid {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 40px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .submit-btn {
    width: 100%;
  }
  .article-navigation {
    padding: 40px 0;
  }
  .article-navigation-inner {
    gap: 20px;
  }
  .article-nav-link {
    max-width: 48%;
  }
  .article-nav-label {
    font-size: 0.65rem;
  }
  .article-nav-title {
    font-size: 1.15rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .footer-column {
    align-items: center;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }

  .cookie-consent-banner {
    bottom: 10px;
    width: calc(100% - 20px);
  }
  .cookie-consent-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 18px;
  }
  .cookie-consent-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .cookie-consent-btn {
    width: 100%;
  }
  .privacy-main {
    padding: 110px 0 70px;
  }

}