/* ===== Árak ===== */

.prices-page {
    min-height: auto;
    padding: 4rem 2rem 5rem;
    background: #f4f6f6;
}

/* Fejléc */

.prices-header {
    max-width: 750px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-label {
    display: inline-block;
    margin-bottom: 0.7rem;
    color: #0f766e;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.prices-header h1 {
    margin-bottom: 1rem;
    color: #222;
    font-size: 2.2rem;
    font-weight: 600;
}

.prices-header p {
    color: #666;
    line-height: 1.7;
}


/* Árlista */

.price-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;

    padding: 1.4rem 1.6rem;

    background: #fff;
    border: 1px solid #e3e8e7;
    border-radius: 12px;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.price-item:hover {
    transform: translateY(-2px);
    border-color: rgba(15, 118, 110, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
}

.price-info {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.price-info > i {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: #0f766e;
    background: rgba(15, 118, 110, 0.08);
    border-radius: 50%;
}

.price-info h2 {
    margin-bottom: 0.25rem;
    color: #222;
    font-size: 1rem;
    font-weight: 600;
}

.price-info p {
    color: #777;
    font-size: 0.85rem;
    line-height: 1.5;
}

.price {
    flex-shrink: 0;
    color: #0f766e;
    font-size: 1.05rem;
    font-weight: 600;
}


/* Jogi / tájékoztató rész */

.price-notice {
    max-width: 900px;
    margin: 2rem auto 0;

    display: flex;
    gap: 1rem;

    padding: 1.3rem 1.5rem;

    background: rgba(15, 118, 110, 0.05);
    border-left: 3px solid #0f766e;
    border-radius: 8px;
}

.price-notice > i {
    color: #0f766e;
    margin-top: 0.2rem;
}

.price-notice h2 {
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.price-notice p {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.6;
}


/* Kapcsolat CTA */

.prices-contact {
    max-width: 700px;
    margin: 4rem auto 0;
    text-align: center;
}

.prices-contact h2 {
    margin-bottom: 0.7rem;
    color: #222;
    font-size: 1.3rem;
    font-weight: 600;
}

.prices-contact p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.6;
}

.prices-contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;

    padding: 0.8rem 1.4rem;

    color: white;
    background: #0f766e;
    border-radius: 25px;

    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.prices-contact-button:hover {
    background: #0b625c;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(15, 118, 110, 0.25);
}

.prices-contact-button i {
    transition: transform 0.2s ease;
}

.prices-contact-button:hover i {
    transform: translateX(3px);
}


/* ===== Mobil ===== */

@media (max-width: 700px) {

    .prices-page {
        padding: 3rem 1rem 4rem;
    }

    .prices-header {
        margin-bottom: 2rem;
    }

    .prices-header h1 {
        font-size: 1.8rem;
    }

    .prices-header p {
        font-size: 0.9rem;
    }

    .price-item {
        align-items: flex-start;
        padding: 1.2rem;
        gap: 1rem;
    }

    .price-info {
        align-items: flex-start;
        gap: 0.8rem;
    }

    .price-info > i {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .price-info h2 {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .price-info p {
        font-size: 0.78rem;
    }

    .price {
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .price-notice {
        padding: 1.1rem;
    }

    .prices-contact {
        margin-top: 3rem;
    }

    .prices-contact h2 {
        font-size: 1.15rem;
    }
}


/* ===== Kis mobil ===== */

@media (max-width: 450px) {

    .price-item {
        flex-direction: column;
    }

    .price {
        align-self: flex-end;
        margin-top: -0.2rem;
    }
}