    header {
      background-color: #006d77;
      color: white;
      padding: 15px 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    header a {
      color: white;
      text-decoration: none;
      font-weight: bold;
    }
    .container {
      max-width: 700px;
      margin: 40px auto;
      padding: 30px;
      background: #fff;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
      border-radius: 8px;
    }
    h1, h2 {
      color: #006d77;
    }
    h1 {
      font-size: 2rem;
      margin-bottom: 0.5rem;
    }
    h2 {
      margin-top: 2rem;
      font-size: 1.2rem;
    }
    p {
      margin-bottom: 1rem;
    }
    ul {
      margin-bottom: 1rem;
      padding-left: 20px;
    }
    a {
      color: #006d77;
      text-decoration: underline;
    }
    /*-----------------------*/
.table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    font-size: 15px;
}

thead th {
    background: linear-gradient(135deg, #006d77, #0a9396);
    color: #fff;
    padding: 16px;
    text-align: left;
    font-weight: 600;
}

thead th:first-child {
    border-top-left-radius: 12px;
}

thead th:last-child {
    border-top-right-radius: 12px;
}

tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid #eef2f3;
}

tbody tr:nth-child(even) {
    background-color: #f9fbfc;
}

tbody tr:hover {
    background-color: #e6f4f5;
    transition: background-color 0.2s ease;
}

td strong {
    color: #006d77;
}

.check {
    color: #2ecc71;
    font-weight: bold;
}

.cross {
    color: #e63946;
    font-weight: bold;
}

.note {
    font-size: 13px;
    color: #555;
}
    
/* Funkció leírás oszlop javítása */
tbody td:first-child {
    display: block;
}

/* Fejléc: csomag oszlopok */
.feature-comparison thead th:not(:first-child) {
    text-align: center;
}

/* Body: ✔ ✖ cellák */
.feature-comparison tbody td:not(:first-child) {
    text-align: center;
}

/* Ikonok finomítása */
.feature-comparison .check,
.feature-comparison .cross {
    font-size: 18px;
}

/* Mobil optimalizálás */
@media (max-width: 768px) {
    table {
        font-size: 14px;
    }

    thead {
        display: none;
    }

    tbody tr {
        display: block;
        margin-bottom: 1rem;
        border-radius: 10px;
        box-shadow: 0 6px 15px rgba(0,0,0,0.05);
    }

    tbody td {
        display: flex;
        justify-content: space-between;
        padding: 12px 14px;
    }

    tbody td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #006d77;
        padding-right: 10px;
    }
    
    tbody td:first-child {
        display: block;
    }

    tbody td:first-child::before {
        display: block;
        margin-bottom: 6px;
    }

    tbody td:first-child strong {
        display: inline;
        white-space: normal;
    }
}

.download-cell {
    text-align: center;
}

.download-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #0a9396;
    background: rgba(10, 147, 150, 0.12);
    transition: all 0.2s ease;
}

.download-icon:hover {
    background: #0a9396;
    color: #ffffff;
    transform: scale(1.1);
}
