/* ==========================================================================
   1. GLOBÁLIS ALAPOK, VÁLTOZÓK ÉS RESET
   ========================================================================== */
:root {
    /* Színpaletta */
    --primary-color: #5b8c7a;
    /* Kellemes menta/erdei zöld */
    --primary-hover: #466d5f;
    /* Sötétebb zöld interakciókhoz */
    --text-dark: #2c3e35;
    /* Sötétzöldes szürke törzsszöveg */
    --title-dark: #1e322d;
    /* Mélyebb zöld a főcímeknek */
    --accent-green: #3b6053;
    /* Kártyák, táblázatok kiemelt színe */
    --bg-light: #f8faf8;
    /* Alap világos háttér */
    --bg-alt: #edf2ee;
    /* Enyhén eltérő váltóháttér */
    --bg-card: #ffffff;
    /* Kártyák fehér háttere */
    --text-muted: #5c7568;
    /* Lágyabb szürkés-zöld alcímekhez */
    --danger-red: #c97d7d;
    /* Zárva tartás jelzése */

    /* Tipográfia és árnyékok */
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.02);
    --shadow-medium: 0 10px 30px rgba(44, 62, 53, 0.05);
    --shadow-dark: 0 15px 40px rgba(44, 62, 53, 0.06);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

/* ==========================================================================
   2. REUSABLE / ÚJRAFELHASZNÁLHATÓ ELEMEK ÉS GOMBOK
   ========================================================================== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.center-title {
    text-align: center;
    margin-top: 80px;
    margin-bottom: 40px !important;
}

.center-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 10px auto 0 auto;
}

.section-lead {
    font-size: 1.15rem;
    color: #4a6358;
    max-width: 900px;
    margin-bottom: 40px;
}

/* --- Gombok közös és egyedi stílusai --- */
.cta-btn,
.back-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover,
.back-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.secondary-cta {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.secondary-cta:hover {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 5px 15px rgba(91, 140, 122, 0.2);
}

.card-btn {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

/* ==========================================================================
   3. FIX NAVIGÁCIÓS MENÜ
   ========================================================================== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: var(--primary-color);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.logo {
    color: #fff;
    font-weight: bold;
    font-size: 1.4rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.nav-links a:hover {
    color: #b2d8d6;
}

/* --- Hamburger menü --- */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ==========================================================================
   4. HERO SZEKCIÓ
   ========================================================================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?q=80&w=1920');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
    color: #fff;
    z-index: 10;
    margin-top: 60px;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    font-weight: 300;
}

/* ==========================================================================
   5. BEMUTATÓ (CIKKCAKK) SZEKCIÓK
   ========================================================================== */
.content-wrapper {
    position: relative;
    z-index: 2;
    background-color: var(--bg-light);
}

.presentation-section {
    padding: 100px 20px;
}

.alt-bg {
    background-color: var(--bg-alt);
}

.flex-row {
    flex-direction: row;
}

.flex-row-reverse {
    flex-direction: row-reverse;
}

/* --- Szöveg blokkok és listák --- */
.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 2.2rem;
    color: var(--title-dark);
    margin-bottom: 20px;
    position: relative;
}

.text-block h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin-top: 10px;
}

.text-block p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #4a6358;
}

.treatment-list {
    list-style: none;
}

.treatment-list li {
    font-size: 1.05rem;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.treatment-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* --- Kép blokkok --- */
.image-block {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-block img {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    object-fit: cover;
}

/* ==========================================================================
   6. SZOLGÁLTATÁSOK SZEKCIÓ ÉS ACCORDION
   ========================================================================== */
.services-section {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

.services-container {
    max-width: 1100px;
    margin: 0 auto;
}

.services-container h2 {
    font-size: 2.2rem;
    color: var(--title-dark);
    margin-bottom: 20px;
}

/* --- Lépéskártyák (Grid) --- */
.assessment-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.step-card {
    background: var(--bg-card);
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(91, 140, 122, 0.08);
    position: relative;
}

.step-num {
    display: inline-block;
    width: 35px;
    height: 35px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    font-weight: bold;
    margin-bottom: 15px;
}

.step-card h3 {
    font-size: 1.25rem;
    color: var(--title-dark);
    margin-bottom: 10px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- Panaszok / Szimptómák --- */
.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.symptom-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(44, 62, 53, 0.04);
    border-top: 4px solid var(--primary-color);
}

.symptom-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.symptom-card h3 {
    font-size: 1.35rem;
    color: var(--title-dark);
    margin-bottom: 20px;
}

.symptom-card ul {
    list-style: none;
}

.symptom-card li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    color: #4a6358;
}

.symptom-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* --- Harmonika (Accordion) stílusok --- */
.methods-block {
    max-width: 800px;
    margin: 0 auto;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(91, 140, 122, 0.1);
}

.accordion-header {
    width: 100%;
    padding: 20px 25px;
    background: var(--bg-card);
    border: none;
    outline: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--title-dark);
    cursor: pointer;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: #fdfefd;
}

.accordion-icon {
    font-size: 1.4rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

/* Nyitott állapot (JS és fallback CSS módszerek) */
.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fdfefd;
}

.accordion-content p {
    padding: 0 25px 20px 25px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.accordion-toggle {
    display: none;
}

.accordion-toggle:checked~.accordion-content {
    max-height: 200px;
}

.accordion-toggle:checked~.accordion-header .accordion-icon {
    transform: rotate(45deg);
}

/* ==========================================================================
   7. ÁRAK SZEKCIÓ ÉS ÁRTÁBLÁZAT
   ========================================================================== */
.prices-section {
    padding: 80px 0;
    background-color: #f9fbf9;
}

.prices-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.center-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

/* --- Árkártyák --- */
.price-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid rgba(91, 140, 122, 0.1);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(91, 140, 122, 0.08);
}

.featured-card {
    border: 2px solid var(--primary-color);
}

.card-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-card h3 {
    font-size: 1.3rem;
    color: var(--accent-green);
    margin-bottom: 10px;
}

.price-card .time {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 15px;
}

.price-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: #2d463e;
    margin-bottom: 20px;
}

.card-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
    flex-grow: 1;
}

/* --- Ártáblázat stílusa --- */
.price-table-wrapper {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.price-table th,
.price-table td {
    padding: 18px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.price-table th {
    background-color: var(--primary-color);
    color: #ffffff;
    font-weight: 600;
}

.price-table th:last-child {
    text-align: right;
}

.price-table tr:last-child td {
    border-bottom: none;
}

.price-table tr:nth-child(even) {
    background-color: #fdfdfd;
}

.price-table tr:hover {
    background-color: rgba(91, 140, 122, 0.02);
}

.table-price {
    font-weight: 700;
    color: var(--accent-green);
    text-align: right;
    font-size: 1.1rem;
}

.price-notice {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
}

/* ==========================================================================
   8. SZEKCIÓK ALATTI KÖZPONTI CTA
   ========================================================================== */
.section-cta-wrapper {
    padding: 60px 20px;
    background-color: var(--bg-light);
    text-align: center;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(91, 140, 122, 0.1);
}

.cta-container h3 {
    font-size: 1.6rem;
    color: var(--title-dark);
    margin-bottom: 10px;
}

.cta-container p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* ==========================================================================
   9. KAPCSOLAT SZEKCIÓ (ŰRLAP ÉS TÉRKÉP/FOTÓ)
   ========================================================================== */
.contact-section {
    padding: 100px 20px;
    background-color: var(--bg-alt);
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
}

/* --- Bal oldal: Információk --- */
.contact-info-block {
    flex: 12;
    padding: 50px;
}

.contact-info-block h2 {
    font-size: 2.2rem;
    color: var(--title-dark);
    margin-bottom: 10px;
}

.contact-info-block h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin-top: 10px;
}

.contact-subtitle {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    /* Biztosítja, hogy az ikon a legelső sor tetejéhez igazodjon */
    gap: 15px;
}

.info-item .icon {
    font-size: 1.4rem;
    background: rgba(91, 140, 122, 0.1);
    padding: 10px;
    border-radius: 50%;
    line-height: 1;

    /* --- EZ AZ ÚJ JAVÍTÁS --- */
    width: 44px;
    /* Fix szélesség a körnek */
    height: 44px;
    /* Fix magasság a körnek */
    display: flex;
    justify-content: center;
    /* Vízszintesen középre teszi az ikont a körön belül */
    align-items: center;
    /* Függőlegesen középre teszi az ikont a körön belül */
    flex-shrink: 0;
    /* Megakadályozza, hogy a böngésző összenyomja a kört */
}

.info-item strong {
    display: block;
    color: var(--title-dark);
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.info-item p,
.info-item a {
    color: #4a6358;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--primary-color);
}

/* --- Fogadóórák --- */
.opening-hours h3 {
    font-size: 1.4rem;
    color: var(--title-dark);
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(91, 140, 122, 0.2);
    padding-bottom: 5px;
}

.opening-hours ul {
    list-style: none;
}

.opening-hours li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: #4a6358;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
}

.opening-hours li span:last-child {
    font-weight: 600;
    color: var(--title-dark);
}

.opening-hours li span.closed {
    color: var(--danger-red);
}

/* --- Jobb oldal: Fotó és Térkép együttes blokkja --- */
.contact-map-block {
    flex: 10;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 50px 50px 50px 0;
    width: 100%;
    max-width: 500px;
}

.clinic-photo-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(91, 140, 122, 0.1);
}

.clinic-photo {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.clinic-photo:hover {
    transform: scale(1.02);
}

.contact-map-block iframe {
    width: 100%;
    height: 280px;
    /* Korlátozott fix magasság */
    border-radius: 12px;
    border: none;
    display: block;
}

/* --- Időpontkérő Űrlap --- */
.appointment-form {
    background: var(--bg-card);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(91, 140, 122, 0.15);
    box-shadow: var(--shadow-light);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

.appointment-form label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-green);
    margin-bottom: 6px;
}

.appointment-form input[type="text"],
.appointment-form input[type="tel"],
.appointment-form input[type="email"],
.appointment-form select,
.appointment-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    color: #333;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(91, 140, 122, 0.1);
}

.appointment-form select {
    background-color: #fff;
    cursor: pointer;
}

.appointment-form textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 30px;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--primary-hover);
}

/* ==========================================================================
   10. KÖSZÖNŐOLDAL
   ========================================================================== */
.thank-you-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #f4f7f5 0%, #e8efec 100%);
    padding: 20px;
    box-sizing: border-box;
}

.thank-you-card {
    background: var(--bg-card);
    max-width: 550px;
    width: 100%;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(91, 140, 122, 0.08);
    border: 1px solid rgba(91, 140, 122, 0.1);
    text-align: center;
}

.thank-you-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.thank-you-card h1 {
    color: var(--accent-green);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.thank-you-lead {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.thank-you-details {
    background: #f9fbf9;
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    border-radius: 0 8px 8px 0;
    text-align: left;
    margin-bottom: 30px;
}

.thank-you-details h3 {
    color: var(--accent-green);
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.thank-you-details p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.thank-you-footer {
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 500;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* ==========================================================================
   11. MEDIA QUERIES (RESPONSIVE DIZÁJN)
   ========================================================================== */
@media screen and (max-width: 900px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-info-block {
        padding: 30px 20px;
    }

    .contact-map-block {
        padding: 0 20px 30px 20px;
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {

    /* Navigáció mobilra */
    .main-nav {
        padding: 15px 25px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        width: 70%;
        height: 100vh;
        background: rgba(30, 50, 45, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.4s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.3rem;
    }

    /* Hamburger ikon animációja */
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Hero mobil igazítás */
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    /* Cikkcakk konténer mobil igazítás (szöveg felül, kép alul) */
    .container {
        flex-direction: column-reverse !important;
        gap: 40px;
    }

    .presentation-section {
        padding: 60px 20px;
    }

    .text-block h2 {
        font-size: 1.8rem;
    }

    /* Szolgáltatások szekció */
    .services-section {
        padding: 60px 20px;
    }

    .services-container h2 {
        font-size: 1.8rem;
    }

    .center-title {
        margin-top: 50px;
    }
}

@media (max-width: 600px) {

    /* Ártáblázat mobilra */
    .price-table th,
    .price-table td {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .table-price {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {

    /* Űrlapsorok egymás alá rendezése mobilon */
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}