 /* Reset a základné štýly */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #fff;
      color: #000;
      line-height: 1.6;
    }

    /* Hlavný nadpis */
    .section-title {
      text-align: center;
      font-size: 2rem;
      font-weight: bold;
      margin: 40px 0 30px;
      letter-spacing: 0.5px;
    }

    /* Kontajner pre kartičky */
    .symptoms-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      padding: 0 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Kartička */
    .symptom-card {
      background-color: #ffdbe6;
      border-radius: 15px;
      padding: 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 15px;
      transition: transform 0.2s;
    }

    .symptom-card:hover {
      transform: translateY(-2px);
    }

    .symptom-text {
      flex: 1;
      font-size: 1rem;
      font-weight: 500;
      line-height: 1.4;
    }

    .symptom-icon {
      width: 60px;
      height: 60px;
       /* šedý štvorec ako si povedal */
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      
    }

      .bottom-line {
        width: 100%;
        height: 30px;
        background-color: #FFDDE9;
        margin-top: 80px;
    }

    .symptom-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    /* Responzívne nastavenie pre mobil */
    @media (max-width: 768px) {
      .symptoms-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
      }

      .section-title {
        font-size: 1.5rem;
        margin: 30px 0 20px;
      }

      .symptom-card {
        padding: 15px;
        gap: 10px;
      }

      .symptom-text {
        font-size: 0.95rem;
      }

      .symptom-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
      }
    }