/* Google Fonts import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&family=Oswald:wght@300;400;500;600;700&display=swap');

/* Reset és alapbeállítások */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-image: url('img/background/bg-dark.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow-y: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Konténer */
.container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Fejléc */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(20, 20, 20, 0.8));
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(129, 247, 174, 0.2);
    padding: 0.6rem 2rem 0.6rem 15rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.logo img {
    height: 30px;
    width: auto;
}

/* Navigáció */
.navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.01em;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #81F7AE, #57ADE1);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
    z-index: -1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #81F7AE, #57ADE1);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(129, 247, 174, 0.3);
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-link.active {
    color: white;
    background: linear-gradient(135deg, #81F7AE, #57ADE1);
    box-shadow: 0 4px 15px rgba(129, 247, 174, 0.4);
    border: 1px solid rgba(129, 247, 174, 0.6);
}

.nav-link.active::before {
    opacity: 1;
}

.nav-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Hamburgermenü */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: linear-gradient(135deg, #81F7AE, #57ADE1);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(129, 247, 174, 0.3);
}

.bar {
    width: 26px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s ease;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Fő tartalom */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px; /* Fejléc magassága */
}

.hero-section {
    text-align: center;
    max-width: 600px;
    padding: 2rem;
}

/* Avatar */
.avatar-container {
    margin-bottom: 2rem;
}

.avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid rgba(129, 247, 174, 0.3);
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(129, 247, 174, 0.5);
}

/* Címek */
.main-title {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #81F7AE, #57ADE1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: -0.02em;
}

.title-section h1 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #81F7AE, #57ADE1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: -0.02em;
}

.subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Közösségi média gombok */
.social-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #81F7AE, #57ADE1);
    color: white;
    box-shadow: 0 8px 25px rgba(129, 247, 174, 0.4);
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.social-btn:hover::before {
    transform: translateX(100%);
}

.social-icon {
    width: 22px;
    height: 22px;
    z-index: 1;
    position: relative;
}

.social-btn.facebook {
    background: linear-gradient(135deg, #81F7AE, #57ADE1);
    color: white;
    box-shadow: 0 8px 25px rgba(129, 247, 174, 0.4);
}

.social-btn.instagram {
    background: linear-gradient(135deg, #81F7AE, #57ADE1);
    color: white;
    box-shadow: 0 8px 25px rgba(129, 247, 174, 0.4);
}

.social-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(129, 247, 174, 0.6);
}

.social-btn.facebook:hover {
    box-shadow: 0 15px 35px rgba(129, 247, 174, 0.6);
}

.social-btn.instagram:hover {
    box-shadow: 0 15px 35px rgba(129, 247, 174, 0.6);
}

.social-btn:active {
    transform: translateY(-2px) scale(1.05);
}

/* Rólam oldal stílusok */
.about-page {
    flex: 1;
    padding-top: 100px;
    background: url('img/background/bg-dark.jpg') center/cover no-repeat fixed;
    overflow: hidden;
}

/* Desktop nézetben egy oldalba fér */
@media (min-width: 769px) {
    .about-page {
        overflow: hidden;
    }
    
    .about-container {
        height: calc(100vh - 120px);
        overflow: hidden;
    }
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.3rem 1.5rem;
    height: calc(100vh - 120px);
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 0.7fr 2.3fr;
    gap: 1.5rem;
    align-items: stretch;
    height: 100%;
}

.about-image {
    position: relative;
    text-align: center;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 30px;
    opacity: 0.1;
    z-index: -1;
}

.about-image img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid rgba(129, 247, 174, 0.2);
}

.about-image img:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 35px 70px rgba(129, 247, 174, 0.3);
}

.about-text {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-text h1 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, #81F7AE, #57ADE1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    font-weight: 600;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.01em;
}

.about-text h3 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 1rem;
    margin: 0.8rem 0 0.5rem 0;
    color: #81F7AE;
    font-weight: 600;
    position: relative;
    padding-left: 1rem;
    letter-spacing: -0.005em;
}

.about-text h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 15px;
    background: linear-gradient(135deg, #81F7AE, #57ADE1);
    border-radius: 2px;
}

.about-text h4 {
    font-size: 0.9rem;
    margin: 0.8rem 0 0.5rem 0;
    color: #57ADE1;
    font-weight: 600;
}

.intro-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    line-height: 1.3;
    margin-bottom: 0.8rem;
    color: #e8e8e8;
    text-align: justify;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    letter-spacing: 0.01em;
}

.contact-section {
    margin: 1rem 0;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-top: 0.6rem;
}

.contact-card {
    background: linear-gradient(135deg, rgba(129, 247, 174, 0.15), rgba(87, 173, 225, 0.1));
    padding: 0.6rem;
    border-radius: 10px;
    border: 2px solid rgba(129, 247, 174, 0.3);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(129, 247, 174, 0.3);
    border-color: rgba(129, 247, 174, 0.5);
}

.contact-icon {
    width: 18px;
    height: 18px;
    color: #81F7AE;
    flex-shrink: 0;
}

.contact-details h4 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #81F7AE;
    margin: 0 0 0.2rem 0;
    font-weight: 600;
    letter-spacing: -0.005em;
}

.contact-details p {
    font-family: 'Oswald', 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #ffffff;
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.02em;
    font-style: italic;
}

.services-section {
    margin: 1rem 0;
}

.services-section h3 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: #81F7AE;
    margin: 0.8rem 0 0.6rem 0;
    position: relative;
    padding-left: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.6rem;
    margin-top: 0.8rem;
}

.service-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    padding: 0.6rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(87, 173, 225, 0.4);
    border-color: rgba(87, 173, 225, 0.6);
}

.service-item:hover h4 {
    color: #81F7AE;
    transform: scale(1.05);
}

.service-item:hover p {
    color: #ffffff;
    font-weight: 400;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #81F7AE, #57ADE1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-item:hover {
    background: linear-gradient(135deg, rgba(129, 247, 174, 0.15), rgba(87, 173, 225, 0.1));
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(129, 247, 174, 0.25);
    border: 1px solid rgba(129, 247, 174, 0.4);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
}

.service-icon {
    width: 16px;
    height: 16px;
    color: #81F7AE;
    flex-shrink: 0;
}

.service-item h4 {
    font-family: 'Poppins', 'Inter', sans-serif;
    margin: 0;
    font-size: 0.8rem;
    color: #57ADE1;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.service-item p {
    font-family: 'Oswald', 'Inter', sans-serif;
    margin: 0;
    color: #e8e8e8;
    line-height: 1.5;
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    font-style: italic;
}

.education-section {
    margin: 1rem 0;
}

.education-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-top: 0.6rem;
}

.education-item {
    background: linear-gradient(135deg, rgba(87, 173, 225, 0.15), rgba(129, 247, 174, 0.1));
    padding: 0.6rem;
    border-radius: 10px;
    border: 2px solid rgba(87, 173, 225, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.education-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #57ADE1, #81F7AE);
}

.education-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(87, 173, 225, 0.3);
    border-color: rgba(87, 173, 225, 0.5);
}

.education-item h4 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #57ADE1;
    margin: 0 0 0.4rem 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.005em;
}

.education-item h4::before {
    content: '🎓';
    font-size: 1rem;
}

.education-item p {
    font-family: 'Oswald', 'Inter', sans-serif;
    margin: 0.4rem 0;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.02em;
    font-style: italic;
}

/* Munkáim oldal stílusok */
.works-page {
    flex: 1;
    background: url('img/background/bg-dark.jpg') center/cover no-repeat fixed;
    padding-top: 100px;
    padding-bottom: 3rem;
}

.works-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.works-header {
    text-align: center;
    margin-bottom: 3rem;
}

.works-header h1 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    background: linear-gradient(135deg, #81F7AE, #57ADE1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.works-header p {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

/* Szűrő sáv */
.filter-bar {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.filter-btn:hover {
    background: linear-gradient(135deg, #81F7AE, #57ADE1);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(129, 247, 174, 0.3);
}

.filter-btn.active {
    background: linear-gradient(135deg, #81F7AE, #57ADE1);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(129, 247, 174, 0.4);
}

/* Munkakártyák grid */
.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.work-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease;
}

.work-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(129, 247, 174, 0.3);
}

.work-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.work-card:hover .work-image img {
    transform: scale(1.1);
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(129, 247, 174, 0.8), rgba(87, 173, 225, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.work-card:hover .work-overlay {
    opacity: 1;
}

.view-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    padding: 12px 16px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.view-btn:hover {
    background: white;
    color: #57ADE1;
    transform: scale(1.1);
}

.view-btn svg {
    width: 24px;
    height: 24px;
}

.work-info {
    padding: 1.5rem;
}

.work-info h3 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.work-info p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 300;
}

/* Modal ablak */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(40, 40, 40, 0.95));
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 900px;
    height: 90vh;
    overflow: hidden;
    border: 1px solid rgba(129, 247, 174, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
}

.close:hover {
    color: #81F7AE;
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    gap: 0;
}

.modal-images {
    background: #1a1a1a;
    display: flex;
    flex-direction: column;
    border-radius: 20px 0 0 20px;
    overflow: hidden;
}

.main-image-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 15px;
    min-height: 200px;
}

.main-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #1a1a1a;
}

.image-gallery {
    display: flex;
    gap: 6px;
    padding: 8px;
    background: rgba(0, 0, 0, 0.3);
    overflow-x: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.gallery-thumb {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    opacity: 0.7;
    flex-shrink: 0;
}

.gallery-thumb:hover {
    opacity: 1;
    transform: scale(1.05);
}

.gallery-thumb.active {
    border-color: #81F7AE;
    opacity: 1;
    box-shadow: 0 0 10px rgba(129, 247, 174, 0.5);
}

.modal-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.95), rgba(50, 50, 50, 0.95));
    border-radius: 0 20px 20px 0;
    overflow-y: auto;
}

.modal-info h2 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #81F7AE, #57ADE1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-bottom: 2px solid rgba(129, 247, 174, 0.3);
    padding-bottom: 0.8rem;
}

.modal-details {
    margin-bottom: 1rem;
}

.detail-item {
    display: flex;
    margin-bottom: 0.8rem;
    font-family: 'Inter', sans-serif;
    padding: 0.4rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    border-left: 3px solid #81F7AE;
}

.detail-item strong {
    color: #81F7AE;
    font-weight: 600;
    min-width: 80px;
    margin-right: 1rem;
}

.detail-item span,
.detail-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.detail-item a:hover {
    color: #57ADE1;
}

.modal-info p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
    font-weight: 300;
    background: rgba(0, 0, 0, 0.1);
    padding: 0.8rem;
    border-radius: 6px;
    border: 1px solid rgba(129, 247, 174, 0.2);
}

/* Szolgáltatások oldal stílusok */
.services-page {
    flex: 1;
    background: url('img/background/bg-dark.jpg') center/cover no-repeat fixed;
    padding-top: 100px;
    padding-bottom: 2rem;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem;
}

.services-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.services-header h1 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #81F7AE, #57ADE1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.services-header p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    line-height: 1.4;
}

/* Szolgáltatás kategóriák */
.services-categories {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-category {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.service-category:hover {
    border-color: rgba(129, 247, 174, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.category-icon {
    width: 28px;
    height: 28px;
    color: #81F7AE;
}

.category-header h2 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.category-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Csomagok grid */
.service-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
}

.package-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-3px);
    border-color: rgba(129, 247, 174, 0.4);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.package-card.featured {
    border-color: rgba(129, 247, 174, 0.5);
    background: linear-gradient(135deg, rgba(129, 247, 174, 0.1), rgba(87, 173, 225, 0.1));
}

.featured-badge {
    position: absolute;
    top: -8px;
    right: 15px;
    background: linear-gradient(135deg, #81F7AE, #57ADE1);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.package-card h3 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.8rem;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.package-features li {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.4rem;
    padding-left: 1.2rem;
    position: relative;
    line-height: 1.4;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #81F7AE;
    font-weight: bold;
    font-size: 0.8rem;
}

.package-price {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #81F7AE;
    text-align: center;
    margin-bottom: 0.4rem;
}

.package-note {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    font-style: italic;
    line-height: 1.3;
}

/* Szolgáltatások oldal kapcsolat szekció */
.services-page .contact-section {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
}

.services-page .contact-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 500px;
    transition: all 0.3s ease;
}

.services-page .contact-card:hover {
    border-color: rgba(129, 247, 174, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.services-page .contact-icon {
    width: 40px;
    height: 40px;
    color: #81F7AE;
    flex-shrink: 0;
}

.services-page .contact-info h3 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.services-page .contact-info p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.services-page .contact-email {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #81F7AE;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.services-page .contact-email:hover {
    color: #57ADE1;
}

/* Kapcsolat oldal stílusok */
.contact-page {
    flex: 1;
    background: url('img/background/bg-dark.jpg') center/cover no-repeat fixed;
    padding-top: 100px;
    padding-bottom: 2rem;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.contact-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-header h1 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #81F7AE, #57ADE1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.contact-header p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: rgba(129, 247, 174, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.contact-info-icon {
    width: 24px;
    height: 24px;
    color: #81F7AE;
    flex-shrink: 0;
}

.contact-info-details h3 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.3rem;
}

.contact-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #81F7AE;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #57ADE1;
}

.contact-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

/* Form stílusok */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: white;
    margin-bottom: 0.3rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #81F7AE;
    box-shadow: 0 0 0 3px rgba(129, 247, 174, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group textarea {
    resize: vertical;
    min-height: 60px;
}

.submit-btn {
    width: 100%;
    padding: 10px 20px;
    background: linear-gradient(135deg, #81F7AE, #57ADE1);
    color: white;
    border: none;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(129, 247, 174, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(129, 247, 174, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Lábléc stílusok */
.footer {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    margin-top: auto;
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.privacy-btn {
    background: linear-gradient(135deg, #81F7AE, #57ADE1);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(129, 247, 174, 0.3);
}

.privacy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(129, 247, 174, 0.4);
}

/* Adatvédelmi modal stílusok */
.privacy-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.privacy-modal-content {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(30, 30, 30, 0.95));
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.privacy-modal-header {
    background: linear-gradient(135deg, #81F7AE, #57ADE1);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.privacy-modal-header h2 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.privacy-close {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s ease;
    line-height: 1;
}

.privacy-close:hover {
    opacity: 0.7;
}

.privacy-modal-body {
    padding: 2rem;
    max-height: 70vh;
    overflow-y: auto;
    color: white;
}

.privacy-modal-body h3 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #81F7AE;
    margin: 1.5rem 0 0.8rem 0;
}

.privacy-modal-body h3:first-child {
    margin-top: 0;
}

.privacy-modal-body p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.privacy-modal-body ul {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.privacy-modal-body li {
    margin-bottom: 0.5rem;
}

.privacy-update {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animációk */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reszponzív design */
@media (max-width: 768px) {
    .header {
        padding: 0.6rem 1rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        padding: 2rem 0;
        gap: 1rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        margin: 0 2rem;
        padding: 10px 16px;
        font-size: 0.9rem;
        border-radius: 8px;
        justify-content: center;
    }
    
    .nav-icon {
        width: 18px;
        height: 18px;
    }
    
    .main-content {
        padding-top: 120px;
    }
    
    .avatar {
        width: 150px;
        height: 150px;
    }
    
    .title-section h1 {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .social-buttons {
        gap: 1.5rem;
    }
    
    .social-btn {
        width: 45px;
        height: 45px;
    }
    
    .social-icon {
        width: 20px;
        height: 20px;
    }
    
    /* Rólam oldal reszponzív - tablet nézet */
    .about-page {
        overflow: visible !important;
        height: auto !important;
    }
    
    .about-container {
        height: auto !important;
        overflow: visible !important;
        max-height: none !important;
    }
    
    .about-content {
        height: auto !important;
        overflow: visible !important;
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-text {
        height: auto !important;
        overflow: visible !important;
    }
    
    .contact-section,
    .services-section,
    .education-section {
        height: auto !important;
        overflow: visible !important;
    }
    
    .about-text {
        padding: 2rem;
    }
    
    .about-text h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 1rem;
    }
    
    .title-section h1 {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .avatar {
        width: 120px;
        height: 120px;
    }
    
    .social-btn {
        width: 40px;
        height: 40px;
    }
    
    .social-icon {
        width: 18px;
        height: 18px;
    }
    
    /* Rólam oldal reszponzív - teljes görgetés engedélyezése */
    body {
        overflow-y: auto !important;
        height: auto !important;
        display: block !important;
    }
    
    .about-page {
        overflow: visible !important;
        min-height: 100vh;
        height: auto !important;
        flex: none !important;
        padding-bottom: 2rem;
    }
    
    .about-container {
        padding: 2rem 1rem;
        height: auto !important;
        overflow: visible !important;
        min-height: auto;
        max-height: none !important;
    }
    
    .about-content {
        height: auto !important;
        overflow: visible !important;
        gap: 2rem;
        display: block !important;
    }
    
    .about-text {
        padding: 1.5rem;
        height: auto !important;
        overflow: visible !important;
    }
    
    .about-text h1 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .contact-section,
    .services-section,
    .education-section {
        margin-top: 2rem;
        height: auto !important;
        overflow: visible !important;
    }
    
    .about-image img {
        max-width: 350px;
    }
    
    .about-text {
        padding: 1.5rem;
    }
    
    .about-text h1 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }

    /* Munkáim oldal reszponzív */
    .works-container {
        padding: 1rem;
    }

    .works-header h1 {
        font-size: 2.2rem;
    }

    .works-header p {
        font-size: 1rem;
    }

    .filter-bar {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }

    .filter-btn {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .works-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .work-image {
        height: 150px;
    }

    .work-info {
        padding: 1rem;
    }

    .work-info h3 {
        font-size: 1.1rem;
    }

    .work-info p {
        font-size: 0.9rem;
    }

    .modal-content {
        width: 95%;
        margin: 5% auto;
        height: 85vh;
    }

    .modal-body {
        grid-template-columns: 1fr;
    }

    .modal-images {
        border-radius: 20px 20px 0 0;
        height: 250px;
    }

    .main-image-container {
        padding: 10px;
        min-height: 150px;
    }

    .image-gallery {
        padding: 8px;
        gap: 6px;
    }

    .gallery-thumb {
        width: 40px;
        height: 40px;
    }

    .modal-info {
        padding: 1rem;
    }

    .modal-info h2 {
        font-size: 1.5rem;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
        margin: 2rem 0 1rem 0;
    }

    /* Munkáim oldal mobile reszponzív */
    .works-container {
        padding: 0.5rem;
    }

    .works-header h1 {
        font-size: 1.8rem;
    }

    .works-header p {
        font-size: 0.9rem;
    }

    .filter-bar {
        gap: 0.3rem;
        margin-bottom: 1.5rem;
    }

    .filter-btn {
        font-size: 0.7rem;
        padding: 5px 10px;
    }

    .works-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .work-image {
        height: 120px;
    }

    .work-info {
        padding: 0.8rem;
    }

    .work-info h3 {
        font-size: 1rem;
    }

    .work-info p {
        font-size: 0.8rem;
    }

    .modal-content {
        width: 98%;
        margin: 2% auto;
        height: 90vh;
    }

    .modal-body {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .modal-images {
        height: 200px;
    }

    .main-image-container {
        padding: 8px;
        min-height: 120px;
    }

    .image-gallery {
        padding: 6px;
        gap: 4px;
    }

    .gallery-thumb {
        width: 35px;
        height: 35px;
    }

    .modal-info {
        padding: 0.8rem;
    }

    .modal-info h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .detail-item {
        flex-direction: column;
        margin-bottom: 0.5rem;
    }

    .detail-item strong {
        min-width: auto;
        margin-right: 0;
        margin-bottom: 0.2rem;
    }
    
    .about-text h4 {
        font-size: 1.2rem;
    }

    /* Szolgáltatások oldal mobile reszponzív */
    .services-container {
        padding: 0.5rem;
    }

    .services-header h1 {
        font-size: 1.8rem;
    }

    .services-header p {
        font-size: 0.9rem;
    }

    .service-category {
        padding: 1rem;
    }

    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .category-header h2 {
        font-size: 1.3rem;
    }

    .package-card h3 {
        font-size: 1rem;
    }

    .package-features li {
        font-size: 0.8rem;
    }

    .package-price {
        font-size: 1.2rem;
    }

    .services-page .contact-card {
        padding: 1rem;
    }

    .services-page .contact-info h3 {
        font-size: 1rem;
    }

    .services-page .contact-info p {
        font-size: 0.8rem;
    }

    .services-page .contact-email {
        font-size: 0.9rem;
    }

    /* Kapcsolat oldal mobil reszponzív */
    .contact-container {
        padding: 0.8rem;
    }

    .contact-header {
        margin-bottom: 0.8rem;
    }

    .contact-header h1 {
        font-size: 1.6rem;
    }

    .contact-header p {
        font-size: 0.8rem;
    }

    .contact-content {
        gap: 1rem;
    }

    .contact-info-section h2,
    .contact-form-section h2 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .contact-info-card {
        padding: 0.6rem;
        gap: 0.6rem;
    }

    .contact-info-icon {
        width: 20px;
        height: 20px;
    }

    .contact-info-details h3 {
        font-size: 0.8rem;
    }

    .contact-link,
    .contact-text {
        font-size: 0.75rem;
    }

    .contact-form {
        padding: 0.8rem;
    }

    .form-group {
        margin-bottom: 0.8rem;
    }

    .form-group label {
        font-size: 0.8rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 6px 10px;
        font-size: 0.8rem;
    }

    .form-group textarea {
        min-height: 50px;
    }

    .submit-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    /* Szolgáltatások oldal reszponzív */
    .services-container {
        padding: 1rem;
    }

    .services-header {
        margin-bottom: 2rem;
    }

    .services-header h1 {
        font-size: 2rem;
    }

    .services-header p {
        font-size: 0.9rem;
    }

    .services-categories {
        gap: 1.5rem;
    }

    .service-category {
        padding: 1.2rem;
    }

    .category-header {
        margin-bottom: 1rem;
    }

    .category-header h2 {
        font-size: 1.3rem;
    }

    .category-description {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
    }

    .service-packages {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .package-card {
        padding: 1rem;
    }

    .package-card h3 {
        font-size: 1rem;
    }

    .package-features li {
        font-size: 0.8rem;
    }

    .package-price {
        font-size: 1.1rem;
    }

    .services-page .contact-card {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem;
    }

    /* Szolgáltatások oldal mobil reszponzív */
    .services-container {
        padding: 0.8rem;
    }

    .services-header {
        margin-bottom: 1.5rem;
    }

    .services-header h1 {
        font-size: 1.8rem;
    }

    .services-header p {
        font-size: 0.85rem;
    }

    .services-categories {
        gap: 1.2rem;
    }

    .service-category {
        padding: 1rem;
    }

    .category-header {
        margin-bottom: 0.8rem;
    }

    .category-header h2 {
        font-size: 1.2rem;
    }

    .category-description {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .package-card {
        padding: 0.8rem;
    }

    .package-card h3 {
        font-size: 0.95rem;
    }

    .package-features li {
        font-size: 0.75rem;
        margin-bottom: 0.3rem;
    }

    .package-price {
        font-size: 1rem;
    }

    .package-note {
        font-size: 0.7rem;
    }

    /* Lábléc reszponzív */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .footer-text {
        font-size: 0.8rem;
    }

    .privacy-btn {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    /* Adatvédelmi modal reszponzív */
    .privacy-modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 85vh;
    }

    .privacy-modal-header {
        padding: 1rem 1.5rem;
    }

    .privacy-modal-header h2 {
        font-size: 1.3rem;
    }

    .privacy-close {
        font-size: 1.5rem;
    }

    .privacy-modal-body {
        padding: 1.5rem;
        max-height: 60vh;
    }

    .privacy-modal-body h3 {
        font-size: 1.1rem;
        margin: 1.2rem 0 0.6rem 0;
    }

    .privacy-modal-body p {
        font-size: 0.9rem;
    }

    .privacy-modal-body ul {
        font-size: 0.9rem;
        padding-left: 1.2rem;
    }

    .privacy-update {
        font-size: 0.8rem;
        margin-top: 1.5rem;
    }

    /* Kapcsolat oldal reszponzív */
    .contact-container {
        padding: 1rem;
    }

    .contact-header {
        margin-bottom: 1rem;
    }

    .contact-header h1 {
        font-size: 2rem;
    }

    .contact-header p {
        font-size: 0.9rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-info-section h2,
    .contact-form-section h2 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .contact-info-card {
        padding: 0.8rem;
    }

    .contact-form {
        padding: 1rem;
    }
    
    .intro-text {
        font-size: 1.1rem;
        line-height: 1.7;
    }
    
    .service-item,
    .contact-card,
    .education-item {
        padding: 1.2rem;
        margin: 1rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .education-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .service-item p,
    .education-item p,
    .contact-details p {
        font-size: 1.1rem;
    }
}