/* Nur fuer /pages/questionnaires.html.
 *
 * Stand als <style>-Block im Dokument. Solange das so war, musste die
 * Content-Security-Policy style-src 'unsafe-inline' erlauben — und damit
 * auch jeden eingeschleusten Stil.
 *
 * Eigene Datei und nicht assets/css/eigen.css, weil diese Regeln nur auf
 * dieser einen Seite gelten sollen. Das ist hier keine Ordnungsfrage: der
 * Block von pages/contact.html setzt Regeln fuer body, die auf jeder
 * anderen Seite das Layout verschoeben. */

/* Questionnaire Page Styles */
    .questionnaire-hero {
      background: linear-gradient(135deg, #9e66a7 0%, #cd878b 50%, #f6a458 100%);
      padding: 60px 30px;
      margin-top: 80px;
      color: white;
    }

    .hero-content {
      display: flex;
      align-items: center;
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .hero-left {
      flex: 1;
      min-width: 0;
    }

    .hero-right {
      flex: 0 0 auto;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .questionnaire-hero h1 {
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 20px;
      line-height: 1.3;
      color: white;
    }

    .hero-meta {
      font-size: 0.95rem;
      margin-bottom: 25px;
      opacity: 0.95;
      line-height: 1.6;
    }

    .hero-cta-text {
      font-size: 0.95rem;
      margin-bottom: 30px;
      line-height: 1.6;
      opacity: 0.95;
    }

    .hero-buttons {
      display: flex;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
      align-items: stretch;
    }

    .download-box {
      margin-top: 40px;
      display: flex;
      flex-direction: column;
      align-items: center;

      width: 400px;
    }

    .btn-hero {
      display: inline-flex;
      align-items: center;
      justify-content: center;

      background-color: white;
      color: #F5A962;

      padding: 12px 30px;
      border-radius: 30px;

      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;

      transition: all 0.3s ease;

      
      gap: 0.3rem;
    }

    .download-text {
      margin-top: 20px;
      color: white;
      font-size: 15px;
      line-height: 1.6;

      text-align: center;

      min-height: 90px; /* gleiche Texthöhe */
    }

    .btn-hero:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .btn-hero i {
      font-size: 0.85rem;
    }

    .paper-preview {
      max-width: 300px;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    }

    

    .questionnaire-content {
      padding: 50px 0;
    }

    .questionnaire-content .container {
      max-width: 900px;
    }

    .author-info {
      font-size: 0.85rem;
      color: #666;
      margin-bottom: 40px;
      line-height: 1.6;
    }

    .questionnaire-content h2 {
      font-size: 1.8rem;
      font-weight: 600;
      margin-top: 40px;
      margin-bottom: 20px;
      color: #333;
    }

    .questionnaire-content h3 {
      font-size: 1.3rem;
      font-weight: 600;
      margin-top: 30px;
      margin-bottom: 15px;
      color: #333;
    }

    .questionnaire-content p {
      font-size: 0.95rem;
      line-height: 1.7;
      color: #555;
      margin-bottom: 15px;
    }

    .questionnaire-content span {
      font-size: 0.95rem;
      line-height: 1.7;
      color: #555;
      margin-bottom: 15px;
    }

    .questionnaire-content ul {
      margin-bottom: 20px;
      padding-left: 25px;
    }

    .questionnaire-content ul li {
      margin-bottom: 12px;
      line-height: 1.6;
    }

    .questionnaire-image {
      text-align: center;
      margin: 40px 0;
    }

    .questionnaire-image img {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

   @media (max-width: 768px) {

    .questionnaire-hero {
      padding: 50px 20px;
    }

    .hero-content {
      flex-direction: column;
      gap: 40px;
      text-align: center;
    }

    .hero-left,
    .hero-right {
      width: 100%;
    }

    .questionnaire-hero h1 {
      font-size: 1.8rem;
      line-height: 1.3;
    }

    .hero-buttons {
      flex-direction: column;
      align-items: center;
      gap: 30px;
      width: 100%;
    }

    .download-box {
      width: 100%;
      max-width: 500px;
    }

    .btn-hero {
      width: 100%;
      min-height: 75px;

      justify-content: center;
      text-align: center;

      padding: 16px 24px;
    }

    .download-text {
      font-size: 0.95rem;
      min-height: auto;
    }

    .paper-preview {
      max-width: 260px;
      width: 100%;
    }
  }
