@media (min-width: 1024px) {
  html, body {
    height: 100%;
  }

  .page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  .contact-section {
    flex: 1;
  }

  footer {
    margin-top: auto;
  }

  /* Header and nav adjustments */
  header {
    justify-content: space-between;
    padding: 1rem 2rem;
  }

  nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
  }

  .nav-links {
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
    position: static !important;
    height: auto;
    background: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    animation: none;
    pointer-events: auto;
  }

  .nav-links ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
  }

  .nav-links li a {
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    text-transform: uppercase;
    transition: border-color 0.3s ease;
    font-size: 0.95rem;
  }

  .nav-links li a:hover,
  .nav-links li a.active {
    border-bottom: 2px solid var(--main-color);
  }

  .hamburger,
  .close-menu {
    display: none !important;
  }

  /* Coaches Layout */
  .coaches-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .coach-card {
    max-width: 380px;
    flex: 1 1 calc(33.333% - 2rem);
  }

  /* Offers Section */
  .offers-slider {
    overflow-x: visible;
    flex-wrap: wrap;
    justify-content: center;
    scroll-snap-type: none;
    padding: 2rem 0;
  }

  .offer-card {
    flex: 0 1 calc(33.333% - 2rem);
    margin: 1rem;
    scroll-snap-align: none;
    max-width: 380px;
  }

  /* Contact Form */
  .contact-form {
    max-width: 800px;
    margin: 0 auto;
  }

  /* CTA Section */
  .cta-content h2 {
    font-size: 2.8rem;
  }

  .cta-content p {
    font-size: 1.3rem;
  }

  /* Review Cards */
  .review-slider {
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: visible;
    gap: 2rem;
  }

  .review {
    max-width: 380px;
    flex: 1 1 calc(33.333% - 2rem);
  }

  .section-title {
    font-size: 3rem;
  }
}