/* PAGE HERO – Adatkezelési oldal */
.page-hero {
    min-height: 280px;
    background-color: var(--navy);
}
.page-hero-title {
    color: #fff;
    font-size: clamp(28px, 5vw, 42px);
}

/* CONTENT SECTION */
.content-section {
    padding: 60px 0 80px;
}
.content-wrap {
    max-width: 860px;
    margin: 0 auto;
    color: var(--text);
    font-size: 16px;
    line-height: 1.75;
}
.content-wrap p {
    margin-bottom: 14px;
}
.content-wrap h3 {
    font-family: "Playfair Display", serif;
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 800;
    color: var(--navy);
    margin-top: 40px;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 3px solid var(--red);
}
.content-wrap h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-top: 28px;
    margin-bottom: 10px;
}
.content-wrap h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-top: 22px;
    margin-bottom: 8px;
}
.content-wrap ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 14px;
}
.content-wrap ul li {
    margin-bottom: 4px;
}
.content-wrap a {
    color: var(--navy);
    font-weight: 600;
    text-decoration: underline;
}
.content-wrap a:hover {
    color: var(--red);
}
.content-wrap table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 15px;
}
.content-wrap table td {
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 12px 16px;
    vertical-align: top;
}
.content-wrap table tbody tr:nth-child(odd) td {
    background: rgba(0, 0, 0, 0.03);
}
.content-wrap table tbody tr:hover td {
    background: rgba(0, 0, 0, 0.06);
}
.info-box {
    background: #f0f4ff;
    border-left: 4px solid var(--navy);
    border-radius: 6px;
    padding: 20px 24px;
    margin-bottom: 30px;
}
.info-box ul {
    list-style: none;
    padding-left: 0;
}
.info-box ul li {
    margin-bottom: 6px;
}
