* {
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 5px;
    background-color: #ffffff;
    gap: 20px;

}

section {
    width: 100%;
    padding: 20px;
    background-color: rgba(249, 249, 249, .3);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    gap: 10px;
}

/* --------- Címek minden szekcióban --------- */
h1,
h2,
h3,
h4

{
    font-family: "Montserrat", sans-serif;
    font-size: 1.5625rem;
    /* kb. 25px */
    font-weight: 700;
    color: #002147;
    margin-bottom: 16px;
    /* tér a cím és a tartalom között */
    text-align: center;
    /* középre igazítás */
}

/* --------- Törzsszöveg minden szekcióban --------- */
p {
    font-family: "Open Sans", sans-serif;
    font-size: 1.25rem;
    /* kb. 20px */
    font-weight: 400;
    line-height: 1.6;
    /* javítja az olvashatóságot */
    color: #2a2a2a;
    padding: 0;
    /* ne legyen felesleges padding */

}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

/*-------gomb design--------*/

.cta-btn {
    display: block;
    /* teljes sor */
    width: 100%;
    /* kijelző szélesség */
    max-width: 320px;
    /* de ne legyen túl nagy */
    margin: 0 auto;
    /* középre */
    padding: 12px 0;
    /* kényelmes tappolás */
    background: #3e5488;
    font-size: 1.25rem;
    /*kb 20px*/
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    transition: background 0.2s;
}

.cta-btn:hover {
    background: #1a2540;
    transform: scale(1.03);
}

/* ---------- Tablet nézet - globalis betűméretek ---------- */
@media (min-width: 600px) and (max-width:767px) {
    section {
        padding: 30px 20px;
    }


    /* Címek h1, h2 */
    h1,
    h2,
    h3,
    h4{
        font-size: 1.875rem;
        /* kb. 30px */
    }

    /* Törzsszöveg p */
    p {
        font-size: 1.5rem;
        /* kb. 24px */
        font-weight: 400;
    }
}

/*---------- Laptop nézet - globalis betűméretek ---------- */

@media (min-width:768px) and (max-width:1024px) {

    section {
        padding: 40px 30px;
    }


    /* Címek h1, h2 */
    h1,
    h2,
    h3,
    h4{
        font-size: 2.25rem;
        /* kb. 36px */
    }

    /* Törzsszöveg p */
    p {
        font-size: 1.75rem;
        /* kb. 28px */
        font-weight: 400;
    }
}

/* ---------- Desktop nézet - globalis betűméretek ---------- */

@media (min-width: 1025px) and (max-width: 1919px) {

    /* Címek h1, h2 */
    h1,
    h2,
    h3,
    h4{
        font-size: 3.125rem;
        /* kb. 50px */
    }

    /* Törzsszöveg p */
    p {
        font-size: 1.875rem;
        /* kb. 30px */
        font-weight: 400;
        line-height: 1.6;
    }

    /* Section padding nagyobb képernyőhöz */
    section {
        padding: 50px 40px;
    }

    /* Globális gap a body-ban */
    body {
        gap: 50px;
    }
}

/* ---------- Desktop XL 1920px+ ---------- */
@media (min-width: 1920px) {

    h1,
    h2,
    h3,
    h4{
        font-size: 4rem;
        /* vagy amit korábban használtál */
    }

    p {
        font-size: 2rem;
    }

    section {
        padding: 50px 80px;
    }

}