/* --- CSS STÍLUSOK --- */
:root {
    /* Cream.jpg ihlette színpaletta */
    --bg-color: #F2E8DF;       /* Halvány krémszínű háttér */
    --card-bg: #EADBC8;        /* Sötétebb krém a kártyákhoz */
    --text-color: #2D2D2D;     /* Elegáns sötétszürke szöveg */
    --accent-color: #A67B5B;   /* Földes barna a gombokhoz/kiemelésekhez */
    --form-bg: #E6DCCD;        /* Űrlap háttér */
    --red-color: #7F3A3F;

    
    --font-main: 'Inter', sans-serif;
    --font-title: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    width: 100%;
    overflow-x: hidden;
}

/* Navigáció */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    padding: 30px 10%;
    align-items: center;
    background-color: transparent;
    transition: none;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    z-index: 1000;
}

.nav-brand {
    display: flex;
    align-items: center;
    min-width: 0;
}

nav.scrolled {
    background-color: #f5eee7;
    box-shadow: none;
}

.logo {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 2px;
    color: black;
    border-right: 2px solid black;
    padding-right: 10px; 
    white-space: nowrap;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin-left: auto;
}

nav a {
    text-decoration: none;
    color: black;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--accent-color);
}

.nav-btn {
    border-bottom: 2px solid black;
    padding-bottom: 2px;
}

nav .logo + .subtitle {
    margin-left: 10px;   /* pontosan 10px a border-right után */
    margin-right:10px; 
    margin-top: 0;
    white-space: nowrap;
}

nav .subtitle {
    margin-right: 0;
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    width: 28px;
    height: 22px;
    padding: 0;
    cursor: pointer;
}

.menu-toggle:focus-visible {
    outline: 2px solid black;
    outline-offset: 2px;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 3px auto;
    background-color: black;
    border-radius: 1px;
    transition: transform 0.25s ease, opacity 0.2s ease;
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

/* Hero Szekció */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 10% 100px 10%;
    min-height: 100vh;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/hero2.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-content {
    max-width: 45%;
    position: relative;
    z-index: 1;
    /*margin-left: 5%;*/
}

.subtitle {
    text-transform: uppercase;
    margin-top: 2px;
    font-size: 0.85rem;
    letter-spacing: 3px;
    margin-left: 10px;
    color: var(--accent-color);
    font-weight: 600;
}

h1 {
    font-family: var(--font-title);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    /*mod
    color: var(--text-color);*/
    color: black;
}

h1 span {
    font-style: italic;
    font-weight: 400;
}

.description {
    margin-bottom: 40px;
    max-width: 90%;
    font-size: 1.05rem;
    /*mod
    color: #555;*/
    color: rgb(0, 0, 0);
}

.cta-button {
    display: inline-block;
    text-decoration: none;
    background-color: var(--accent-color);
    color: white;
    padding: 16px 32px;
    border-radius: 4px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: #8b654b;
    transform: translateY(-2px);
}

/* Kép stílus (Boltív forma a cream.jpg alapján) - most a rólam szekcióban */
.about-image {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    /*width: 100%;*/
    max-width: 400px;
    height: 550px;
    background-color: #ddd;
    /* Ez hozza létre a jellegzetes íves formát */
    border-radius: 200px 200px 0 0; 
    overflow: hidden;
    /* mod
    box-shadow: 20px 20px 0px rgba(166, 123, 91, 0.1);*/
    
    box-shadow: 20px 20px 0px var(--red-color)
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Szolgáltatások */
.services {
    padding: 100px 10%;
    background-color: rgba(255,255,255,0.25); /* Nagyon enyhe világosítás */
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: var(--font-title);
    font-size: 2.2rem;
    color: var(--text-color);
}

/* Rólam / Bemutatkozás */
.about {
    padding: 100px 10%;
    /*background-color: var(--bg-color);*/
    background-color: white;

}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    flex: 0 0 45%;
}

.about-content {
    flex: 1;
    text-align: left;
}

.about h2 {
    font-family: var(--font-title);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.about h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 30px;
}

.about p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.consultation {
    padding: 100px 10%;
    background-color: rgba(255,255,255,0.35);
}

/* Konzultáció - Carousel stílus */
.consultation-carousel {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.consultation-track {
    display: flex;
    transition: transform 0.5s ease;
}

.consultation-step {
    min-width: 100%;
    background-color: var(--card-bg);
    padding: 0px 40px 40px 40px; /* Felül 15px, jobbra-balra 40px, alul 40px */
    border-radius: 8px;
    box-sizing: border-box;
    position: relative;
}

.consultation-step::before {
    content: attr(data-step);
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.3;
    margin-right: 15px;
}

.consultation-step h3 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    margin-bottom: 10px;
    margin-top: 0px; /* Csökkentsd vagy állítsd 0-ra */
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.consultation-step h3::before {
    content: attr(data-number);
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.3;
    margin-right: 15px;
    padding-bottom: 5px;
    flex-shrink: 0;
    line-height: 1; /* Hozzáadva */
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: var(--accent-color);
}

/* Képzések - Timeline stílus */
.education-timeline {
max-width: 700px;
margin: 0;
position: relative;
padding: 20px 0;
}

.education-timeline::before {
content: '';
position: absolute;
left: 50%;
transform: translateX(-50%);
width: 3px;
height: 100%;
background: linear-gradient(to bottom, var(--accent-color), var(--card-bg));
top: 0;
}

.timeline-item {
display: flex;
margin-bottom: 35px;
position: relative;
}
/*
.timeline-item:nth-child(odd) {
flex-direction: row-reverse;
}*/

.timeline-year {
flex: 0 0 48%;
text-align: right;
padding-right: 15px;
font-family: var(--font-title);
font-size: 1.5rem;
color: var(--accent-color);
font-weight: 700;
opacity: 0.7;
}
/*
.timeline-item:nth-child(odd) .timeline-year {
text-align: left;
padding-right: 0;
padding-left: 15px;
}
*/
.timeline-content {
flex: 0 0 48%;
background-color: var(--card-bg);
padding: 15px 15px 15px 15px; /* Jobb oldali padding csökkentve */
margin-left:30px;
border-radius: 8px;
position: relative;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
margin-right:30px;
}

.timeline-content:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.timeline-content h3 {
font-family: var(--font-title);
font-size: 0.9rem;
margin-bottom: 6px;
color: var(--text-color);
line-height: 1.3;
text-align: center;
}

.timeline-dot {
position: absolute;
left: 50%;
transform: translateX(-50%);
width: 14px;
height: 14px;
background-color: var(--accent-color);
border: 3px solid var(--bg-color);
border-radius: 50%;
z-index: 1;
top: 20px;
box-shadow: 0 0 0 2px var(--card-bg);
}

.education2 {
padding: 100px 10%;
background-color: #f9f9f9; /* Halvány háttérszín */
}

.education2 .section-header h2 {
font-family: var(--font-title);
font-size: 2.2rem;
color: var(--text-color);
text-align: center;
margin-bottom: 50px;
}

.education2 .education-timeline {
max-width: 700px;
margin: 0 auto;
position: relative;
padding: 20px 0;
padding-left: 20px;
}

.education2 .education-timeline::before {
content: '';
position: absolute;
left: 25%;
transform: none;
width: 3px;
height: 100%;
background: linear-gradient(to bottom, var(--accent-color), var(--red-color));
top: 0;
}

.education2 .timeline-item {
display: flex;
margin-bottom: 35px;
position: relative;
padding-left: 40px;
}
/*
.education2 .timeline-item:nth-child(odd) {
flex-direction: row-reverse;
}
*/
.education2 .timeline-year {
flex: 0 0 18%;
text-align: left;
padding-right: 20px;
padding-left:5%;
font-family: var(--font-title);
font-size: 1.5rem;
color: var(--red-color);
font-weight: 700;
opacity: 0.7;
}
/*
.education2 .timeline-item:nth-child(odd) .timeline-year {
text-align: left;
padding-right: 0;
padding-left: 15px;
}
*/
.education2 .timeline-content {
flex: 0 0 72%;
background-color: var(--card-bg);
padding: 15px;
margin-left: 30px;
border-radius: 8px;
position: relative;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.education2 .timeline-item:nth-child(odd) .timeline-content {
margin-right: 30px;
}

.education2 .timeline-content:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.education2 .timeline-content h3 {
font-family: var(--font-title);
font-size: 1rem;
margin-bottom: 6px;
color: var(--text-color);
line-height: 1.3;
text-align: left;
}

.education2 .timeline-dot {
position: absolute;
left: 50%;
transform: translateX(-50%);
width: 14px;
height: 14px;
background-color: var(--accent-color);
border: 3px solid var(--bg-color);
border-radius: 50%;
z-index: 1;
top: 20px;
box-shadow: 0 0 0 2px var(--card-bg);
}

.case-dot {
position: absolute;
width: 16px;
height: 16px;
background-color: var(--accent-color);
border-radius: 50%;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.case-dot:hover {
transform: scale(1.3);
}

.case-dot.active {
background-color: var(--red-color);
transform: scale(1.5);
box-shadow: 0 0 0 4px rgba(127, 58, 63, 0.2);
}


/* Esetek3 - Modern körös design */
#esetek3 {
padding: 100px 8%;
background-color: rgba(255,255,255,0.35);
}

#esetek3 .section-with-image {
display: flex;
align-items: center;
gap: 60px;
}

#esetek3 .section-content {
flex: 1;
}

.cases-modern-container {
max-width: 100%;
margin: 0 auto;
text-align: center;
}

.cases-modern-circle-wrapper {
position: relative;
width: 600px;
height: 600px;
margin: 60px auto;
}

/* Külső dekoratív kör */
.cases-outer-ring {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100%;
height: 100%;
border-radius: 50%;
background: linear-gradient(135deg, 
    rgba(166, 123, 91, 0.08) 0%, 
    rgba(234, 219, 200, 0.12) 100%);
box-shadow: 
    inset 0 10px 30px rgba(0,0,0,0.03),
    0 10px 40px rgba(0,0,0,0.05);
}

/* Belső tartalmi kör */
.cases-inner-content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 420px;
height: 420px;
background: rgba(255,255,255,0.35);
border-radius: 50%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 60px 50px;
box-shadow: 
    0 20px 60px rgba(0,0,0,0.08),
    0 0 0 1px rgba(0,0,0,0.03);
z-index: 10;
}

.cases-inner-content h3 {
font-family: var(--font-title);
font-size: 1.8rem;
color: var(--text-color);
margin-bottom: 20px;
font-weight: 600;
opacity: 0;
transition: opacity 0.6s ease, transform 0.6s ease;
transform: translateY(10px);
position: absolute;
}

.cases-inner-content h3.active {
opacity: 1;
transform: translateY(0);
}

.cases-inner-content p {
font-size: 0.95rem;
line-height: 1.7;
color: #6c757d;
margin-bottom: 25px;
opacity: 0;
transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
transform: translateY(10px);
position: absolute;
max-width: 320px;
}

.cases-inner-content p.active {
opacity: 1;
transform: translateY(0);
}

.cases-learn-more {
display: inline-block;
padding: 11px 28px;
background-color: #0d6efd;
color: white;
text-decoration: none;
border-radius: 25px;
font-size: 0.85rem;
font-weight: 500;
transition: all 0.3s ease;
opacity: 0;
transform: translateY(10px);
position: absolute;
bottom: 60px;
}

.cases-learn-more.active {
opacity: 1;
transform: translateY(0);
transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s, background-color 0.3s ease;
}

.cases-learn-more:hover {
background-color: #0b5ed7;
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
}

/* Icon pontok a körön */
.case-icon-dot {
position: absolute;
width: 80px;
height: 80px;
background: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
box-shadow: 
    0 8px 25px rgba(0,0,0,0.1),
    0 0 0 1px rgba(0,0,0,0.05);
z-index: 5;
}

.case-icon-dot:hover {
transform: scale(1.1) translateY(-5px);
box-shadow: 
    0 12px 35px rgba(0,0,0,0.15),
    0 0 0 1px rgba(0,0,0,0.05);
}

.case-icon-dot.active {
/*background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);*/
background-color: var(--red-color);
/*box-shadow: 
    0 12px 40px rgba(13, 110, 253, 0.4),
    0 0 0 4px rgba(13, 110, 253, 0.1);*/
transform: scale(1.15);
}

.case-icon-dot svg {
width: 35px;
height: 35px;
fill: #6c757d;
transition: all 0.4s ease;
}

.case-icon-dot.active svg {
fill: white;
transform: scale(1.1);
}

.case-icon-dot img {
    width: 35px;
    height: 35px;
    transition: all 0.4s ease;
    filter:var(--red-color); 
}

.case-icon-dot.active img {
    filter: brightness(0) invert(1); /* makes it white */
    transform: scale(1.1);
}

/* Vélemények */
.testimonials {
    padding: 100px 10%;
    background-color: white;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--card-bg);
    padding: 40px 35px;
    border-radius: 8px;
    position: relative;
    padding-top: 60px;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: var(--accent-color);
    opacity: 0.3;
    font-family: var(--font-title);
    line-height: 1;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.testimonial-author {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 0.9rem;
    text-align: right;
}

/* Kapcsolat Űrlap */
.contact {
    padding: 100px 10%;
    /*background-color: rgba(255,255,255,0.35);*/
    background-color: white;
    display: flex;
    justify-content: center;
}

.contact-container {
    width: 100%;
    max-width: 600px;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-container h2 {
    font-family: var(--font-title);
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.contact-container > p {
    margin-bottom: 40px;
    opacity: 0.8;
}

form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

input, textarea {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #999;
    font-family: var(--font-main);
    font-size: 1rem;
    outline: none;
    color: var(--text-color);
    transition: border-color 0.3s;
}

input:focus, textarea:focus {
    border-bottom-color: var(--accent-color);
}

textarea {
    resize: vertical;
    min-height: 80px;
}

.submit-btn {
    background: transparent;
    border: 1px solid var(--text-color);
    padding: 15px 40px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    align-self: flex-start;
    margin-top: 20px;
    color: var(--text-color);
}

.submit-btn:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
}

/* Szekció képek elrendezése */
.section-with-image {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-image {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.section-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: block;
}

.section-content {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.section-image.left {
    order: -1;
}

.section-image.right {
    order: 1;
}

.case-description.active{
    font-size:20px;
}



/* Lábléc */
footer {
    /*background-color: rgba(255,255,255,0.35);*/
    background-color: white;
    text-align: center;
    padding: 60px 20px;
    font-size: 0.8rem;
    color: #666;
}

.toast {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    background-color: #6ba368;
    color: #fff;
    font-size: 0.95rem;
    z-index: 3000;
    transform: translateY(100%);
    transition: transform 0.35s ease;
}

.toast.show {
    transform: translateY(0);
}

@media (max-width: 1500px) {
    
    .cases-modern-circle-wrapper {
        width: 460px;
        height: 460px;
        margin: 40px auto;
    }

    .cases-inner-content {
        width: 320px;
        height: 320px;
        padding: 40px 30px;
    }

    .cases-inner-content h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .cases-inner-content p {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .case-icon-dot {
        width: 70px;
        height: 70px;
    }

    .case-icon-dot svg,
    .case-icon-dot img {
        width: 32px;
        height: 32px;
    }

        
    .case-description.active{
        font-size:18px;
    }
}

/* Reszponzivitás */
@media (max-width: 900px) {
    .hero {
        text-align: center;
        padding-top: 20px;
    }
        .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height:100%;
        background-image: url('images/hero_phone_ext2.jpeg');
        background-size: cover;
        background-position: center;
        z-index: 0;
    }
    
    .hero-content {
        max-width: 100%;
        margin-top: 50px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        margin-left: 0;
    }

    .about-container {
        flex-direction: column;
    }

    .about-image {
        flex: 0 0 auto;
        width: 100%;
    }

    .about-content {
        text-align: center;
    }

    nav {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 8px 12px;
        padding-bottom: 20px;
        padding-top: 20px;
    }

    nav::after {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.35);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, visibility 0s linear 0.3s;
        z-index: 1100;
    }

    nav.menu-open::after {
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: opacity 0.3s ease;
    }

    .nav-brand {
        grid-column: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        min-width: 0;
        max-width: calc(100% - 12px);
        overflow: hidden;
    }

    .menu-toggle {
        display: block;
        grid-column: 2;
        justify-self: end;
        line-height: 0;
        position: relative;
        z-index: 1201;
    }

    nav ul {
        margin-left: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        position: fixed;
        top: 0;
        left: 0;
        width: min(78vw, 320px);
        height: 100vh;
        padding: 90px 24px 24px;
        background-color: #f5eee7;
        box-shadow: 8px 0 24px rgba(0,0,0,0.12);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        pointer-events: none;
        z-index: 1200;
    }

    nav ul.open {
        transform: translateX(0);
        pointer-events: auto;
    }

    .logo {
        border-bottom: 2px solid black;
        padding-bottom: 5px;
        border-right: 0;
        font-size: 1.1rem;
        letter-spacing: 1.4px;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    nav .logo + .subtitle {
        margin-left: 0;
        margin-right: 0;
        margin-top: 6px;
        font-size: 0.72rem;
        letter-spacing: 2px;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .section-with-image {
        flex-direction: column;
    }

    #esetek3 {
        padding-left: 0;
        padding-right: 0;
    }

    .section-image img {
        margin-left: 0%;
    }

    .section-image {
        flex: 0 0 auto;
        width: 100%;
        order: 0;
    }

    .section-content {
        order: 1;
        width: 100%;
    }

    .section-image.left,
    .section-image.right {
        order: 0;
    }

    .timeline-item {
        align-items: flex-start;
    }

    .timeline-year {
        flex: 0 0 72px;
        background-color: #f9f9f9;
        padding-right: 10px;
        font-size: 1.2rem;
    }

    .timeline-content {
        margin-left: 0;
    }

    .education2 .education-timeline {
        padding-left: 0;
    }

    .education2 .education-timeline::before {
        left: 16px;
    }

    .education2 .timeline-item {
        padding-left: 0;
        gap: 10px;
    }

    .education2 .timeline-year {
        flex: 0 0 64px;
        padding-left: 0;
        padding-right: 10px;
        font-size: 1.2rem;
        opacity: 1.0;
    }

    .education2 .timeline-content {
        margin-left: 0;
        flex: 1;
    }

    .cases-modern-circle-wrapper {
        width: 320px;
        height: 320px;
        margin: 40px auto;
    }

    .cases-inner-content {
        width: 260px;
        height: 260px;
        padding: 40px 30px;
    }

    .cases-inner-content h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .cases-inner-content p {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .case-icon-dot {
        width: 60px;
        height: 60px;
    }

    .case-icon-dot svg,
    .case-icon-dot img {
        width: 28px;
        height: 28px;
    }

        
    .case-description.active{
        font-size:18px;
    }
}