/* ===== Szolgáltatások oldal ===== */

main {
    background: #f4f6f6;
}

.services-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 5rem;
}


/* ===== Bevezető ===== */

.services-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-label,
.question-label {
    display: block;
    margin-bottom: 0.7rem;

    color: #0f766e;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.services-intro h1 {
    margin-bottom: 1.2rem;

    color: #222;
    font-size: 2.2rem;
    line-height: 1.2;
}

.services-intro p {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}


/* ===== Közös kártya ===== */

.service-card {
    background: #fff;
    border: 1px solid #e5e8e8;
    border-radius: 18px;
    padding: 2rem;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.service-card-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.service-text {
    flex: 1;
}

.service-text h2,
.equipment-card h2,
.services-cta h2 {
    margin-bottom: 1rem;

    color: #222;
    font-size: 1.45rem;
    line-height: 1.3;
}

.service-text p {
    margin-bottom: 0.9rem;

    color: #555;
    line-height: 1.7;
}

.service-text p:last-child {
    margin-bottom: 0;
}

.service-answer {
    padding: 1rem 1.1rem;

    background: #f1f7f6;
    border-left: 3px solid #0f766e;
    border-radius: 0 8px 8px 0;

    color: #444 !important;
}


/* ===== Képek ===== */

.service-image {
    width: 42%;
    max-width: 430px;
    height: 280px;

    object-fit: cover;

    border-radius: 12px;
}


/* ===== Tünetlista ===== */

.service-symptoms {
    margin-bottom: 2rem;
}

.symptom-list {
    display: grid;
    gap: 0.65rem 1.5rem;

    margin-top: 1.3rem;
    padding: 0;

    list-style: none;
}

.symptom-list li {
    position: relative;
    padding-left: 1.4rem;

    color: #444;
    line-height: 1.45;
}

.symptom-list li::before {
    content: "";

    position: absolute;
    left: 0;
    top: 0.55rem;

    width: 6px;
    height: 6px;

    background: #0f766e;
    border-radius: 50%;
}


/* ===== Szolgáltatások ===== */

.services-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}


/* ===== Diagnosztikai eszközök ===== */

.equipment-card {
    display: flex;
    align-items: center;
    gap: 3rem;

    margin-top: 1.5rem;
    padding: 2rem;

    background: #fff;
    border: 1px solid #e5e8e8;
    border-radius: 18px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.equipment-card > div {
    flex: 1;
}

.equipment-list {
    margin-top: 1.2rem;
    padding-left: 1.2rem;

    color: #555;
    line-height: 1.9;
}

.equipment-card .service-image {
    width: 40%;
}


/* ===== Árlista gomb ===== */

.services-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;

    margin-top: 1.5rem;
    padding: 2rem 2.2rem;

    background: #eaf4f2;
    border: 1px solid #d5e9e5;
    border-radius: 18px;
}

.services-cta h2 {
    margin-bottom: 0.5rem;
}

.services-cta p {
    color: #555;
    line-height: 1.6;
}

.services-button {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;

    flex-shrink: 0;

    padding: 0.85rem 1.3rem;

    background: #0f766e;
    color: #fff;

    border-radius: 25px;

    text-decoration: none;
    font-weight: 500;

    transition:
        background-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.services-button:hover {
    background: #0b625c;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(15, 118, 110, 0.25);
}

.services-button i {
    transition: transform 0.25s ease;
}

.services-button:hover i {
    transform: translateX(4px);
}


/* ===== Információs megjegyzés ===== */

.services-note {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;

    margin-top: 1.5rem;
    padding: 1rem 1.2rem;

    color: #666;
    font-size: 0.85rem;
    line-height: 1.6;
}

.services-note i {
    margin-top: 0.2rem;
    color: #0f766e;
}


/* ===== Tablet ===== */

@media (max-width: 800px) {

    .services-container {
        padding: 3rem 1.2rem 4rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-card-content,
    .equipment-card {
        gap: 1.5rem;
    }

    .service-image {
        width: 40%;
        height: 240px;
    }

    .symptom-list {
        grid-template-columns: 1fr;
    }

    .services-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .services-button {
        width: 100%;
        justify-content: center;
    }
}


/* ===== Mobil ===== */

@media (max-width: 600px) {

    .services-container {
        padding: 2.5rem 1rem 3rem;
    }

    .services-intro {
        margin-bottom: 2rem;
    }

    .services-intro h1 {
        font-size: 1.9rem;
    }

    .service-card {
        padding: 1.2rem;
        border-radius: 14px;
    }

    .service-card-content,
    .equipment-card {
        flex-direction: column;
        align-items: stretch;
    }

    .service-text h2,
    .equipment-card h2,
    .services-cta h2 {
        font-size: 1.25rem;
    }

    .service-text p {
        font-size: 0.92rem;
    }

    .service-image,
    .equipment-card .service-image {
        width: 100%;
        max-width: none;
        height: 220px;
        order: 2;
    }

    .service-text {
        order: 1;
    }

    .symptom-list {
        gap: 0.55rem;
    }

    .symptom-list li {
        font-size: 0.92rem;
    }

    .services-cta {
        padding: 1.5rem;
        border-radius: 14px;
    }

    .services-note {
        padding: 0.8rem 0.3rem;
        font-size: 0.82rem;
    }
}