@media (max-width: 1220px) {
  .header {
    padding: 1rem 2rem;
    transition: all 0.4s ease;
  }

  .logo {
    max-height: 90px;
    transition: all 0.4s ease;
  }

  .header-content {
    justify-content: space-between;
    transition: all 0.4s ease;
  }

  .logo-group {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    transition: all 0.4s ease;
  }

  .site-title {
    text-align: right;
    flex-grow: 1;
    transition: all 0.4s ease;
  }

  .site-title h1 {
    font-size: 1.5rem;
    transition: all 0.4s ease;
  }

  .site-title span {
    font-size: 1rem;
    transition: all 0.4s ease;
  }

  .menu-toggle {
    font-size: 2rem;
    align-self: flex-start;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.4s ease;
  }

  /* Zsugorított állapot csak mobil nézetben */
  .header.shrink {
    padding: 0.4rem 1rem;
    transition: all 0.3s ease;
  }

  .header.shrink .logo {
    max-height: 50px;
    transition: all 0.3s ease;
  }

  .header.shrink .site-title h1 {
    font-size: 1.1rem;
    transition: all 0.3s ease;
  }

  .header.shrink .site-title span {
    font-size: 0.75rem;
    transition: all 0.3s ease;
  }

  .header.shrink .menu-toggle {
    font-size: 1.5rem;
    transition: all 0.3s ease;
  }
}

@media (min-width: 1220px) {
  .header, .logo, .site-title, .menu-toggle {
    transition: all 0.4s ease;
  }

  .logo {
    max-height: 120px;
  }

  .site-title h1 {
    font-size: 1.5rem;
  }

  .site-title span {
    font-size: 0.95rem;
  }

  .menu-toggle {
    font-size: 2rem;
  }
}

/* MOBIL NÉZET */
@media (max-width: 1220px) {
  .form-download-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7em;
  }
  .form-download-btn {
    margin-left: 0;
  }
  .form-info {
    margin-left: 0;
  }
}

@media (max-width: 1220px) {
  .testimonial-card { padding: 1rem; font-size: 0.98rem; }
  .testimonial-meta { font-size: 0.87rem; }
}

