* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    min-width: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

:root {
    --primary: #555555;
    --secondary: #2d2d2d;
    --accent: #00b8d4;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --accent-color: #00b8d4;
    --accent-hover: #0097b3;
    --secondary-color: #37474f;
    --text-primary: #333;
    --text-secondary: #666;
    --bg-primary: #fff;
    --bg-secondary: #f8f9fa;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    min-width: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header és Navigáció */
header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    background-color: rgba(85, 85, 85, 0.95);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 2px solid rgba(255,255,255,0.75);
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(255,255,255,0.12);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
    display: block;
    width: 20px;
    height: 2px;
    background: white;
    position: relative;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
    content: '';
    position: absolute;
    left: 0;
}

.menu-toggle span::before {
    top: -6px;
}

.menu-toggle span::after {
    top: 6px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Hero szekció */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"/><circle cx="80" cy="80" r="2" fill="white" opacity="0.1"/><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    opacity: 0.1;
    animation: drift 20s linear infinite;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: slideInDown 0.8s ease-out;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: slideInUp 0.8s ease-out 0.2s backwards;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    animation: slideInUp 0.8s ease-out 0.4s backwards;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.cta-button:active {
    transform: translateY(-2px);
}

/* Служба szekció */
.services {
    padding: 6rem 0;
    background: linear-gradient(180deg, white 0%, var(--light) 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary);
    animation: fadeIn 0.8s ease-out;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-top: 4px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
    border-top-color: var(--accent);
}

.service-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-card p {
    color: #666;
    line-height: 1.8;
}

/* Info szekció */
.info-section {
    background: linear-gradient(135deg, var(--light) 0%, white 100%);
    padding: 6rem 0;
    position: relative;
}

.info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.info-text h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    animation: slideInLeft 0.8s ease-out;
}

.info-text p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
    animation: slideInLeft 0.8s ease-out 0.2s backwards;
}

.info-image {
    background: linear-gradient(135deg, #555555 0%, #2d2d2d 100%);
    height: 350px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(85, 85, 85, 0.3);
}

.info-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

.info-image span {
    animation: float 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

/* Stat szekció */
.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="white" opacity="0.05"/></svg>');
    opacity: 0.2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat {
    text-align: center;
    animation: scaleIn 0.6s ease-out;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 3rem 0;
    margin-top: 0;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, rgba(248,249,250,0.5), rgba(248,249,250,0));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent);
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
    transition: all 0.3s;
}

.footer-section a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
    text-align: center;
    color: #999;
    position: relative;
    z-index: 1;
}

/* Animációk */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes drift {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(100px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* AOS animációk - Scroll trigger */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in-up.animated {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease-out;
}

.fade-in-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease-out;
}

.fade-in-right.animated {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s ease-out;
}

.scale-in.animated {
    opacity: 1;
    transform: scale(1);
}

/* Parallax */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Reszponzív */
@media (max-width: 768px) {
    .hero {
        padding: 5rem 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(20, 20, 20, 0.98);
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0.75rem 0;
        overflow: hidden;
        transition: max-height 0.35s ease, opacity 0.25s ease;
        border-bottom-left-radius: 16px;
        border-bottom-right-radius: 16px;
        z-index: 99;
        width: 100%;
    }

    .nav-links.open {
        display: flex;
        max-height: calc(100vh - 80px);
        opacity: 1;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        width: 100%;
        padding: 0.85rem 1rem;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .info-content {
        grid-template-columns: 1fr;
    }

    .info-image {
        height: 200px;
        font-size: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .info-text h2 {
        font-size: 1.8rem;
    }
}

/* Scroll bar stílus */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

/* Dark Mode */
body.dark-mode {
    background-color: #1a1a1a;
    color: #e0e0e0;
}

body.dark-mode header {
    background: linear-gradient(135deg, #1e1e2e 0%, #2d1b4e 100%);
}

body.dark-mode .hero {
    background: linear-gradient(135deg, #1e1e2e 0%, #2d1b4e 100%);
}

body.dark-mode section {
    background-color: #1a1a1a;
}

/* Szolgáltatások szekció */
.services-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Rólunk szekció */
.about-section {
    padding: 5rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: var(--text-primary);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Reszponzív */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }
}

/* Galéria szekció */
.gallery-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 184, 212, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 2rem;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
}

/* Portfólió szekció */
.portfolio-section {
    padding: 5rem 0;
    background: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 4/3;
    display: block;
    text-decoration: none;
    color: inherit;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 2rem;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-category {
    background: var(--accent-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.portfolio-overlay h3 {
    font-size: 1.5rem;
}

/* Blog szekció */
.blog-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.blog-date {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.blog-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height: 1.4;
}

.blog-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.blog-author {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

body.dark-mode {
    --primary: #84c2ff;
    --secondary: #17202b;
    --accent: #84c2ff;
    --accent-color: #84c2ff;
    --accent-hover: #6699ff;
    --dark: #0b0f18;
    --light: #121820;
    --bg-primary: #0a101b;
    --bg-secondary: #10151f;
    --text-primary: #e6e8ff;
    --text-secondary: #b0b8c7;
    --border-color: #23314c;
    background-color: #0b0d12;
    color: #e6e6e6;
}

body.dark-mode .hero {
    background: linear-gradient(135deg, #111821 0%, #17202b 100%);
}

body.dark-mode .services {
    background: linear-gradient(135deg, #111821 0%, #17202b 100%);
}

body.dark-mode .info-section {
    background: linear-gradient(135deg, #10151f 0%, #121821 100%);
}

body.dark-mode .about-section,
body.dark-mode .portfolio-section,
body.dark-mode .blog-section,
body.dark-mode .services-section,
body.dark-mode .stats-section {
    background-color: #10151f;
}

body.dark-mode .service-card,
body.dark-mode .blog-card,
body.dark-mode .portfolio-item,
body.dark-mode .gallery-item {
    background-color: #17202b;
    border-color: #23314c;
}

body.dark-mode .about-image img {
    filter: brightness(0.95) contrast(1.05);
}

body.dark-mode .service-card h3,
body.dark-mode .section-title,
body.dark-mode .info-text h2,
body.dark-mode .blog-date,
body.dark-mode .blog-author,
body.dark-mode .stat-number,
body.dark-mode .portfolio-category,
body.dark-mode .footer-section h4 {
    color: #d9e6ff;
}

body.dark-mode .service-card p,
body.dark-mode .info-text p,
body.dark-mode .about-text p,
body.dark-mode .blog-card p,
body.dark-mode .stat-label,
body.dark-mode .footer-section p,
body.dark-mode .footer-bottom p {
    color: #b0b8c7;
}

body.dark-mode .footer {
    background-color: #090c12;
}

body.dark-mode footer::before {
    background: linear-gradient(to bottom, rgba(16, 21, 31, 0.85), rgba(16, 21, 31, 0));
}

body.dark-mode .footer-section a {
    color: #a0b7d6;
}

body.dark-mode .footer-section a:hover,
body.dark-mode .nav-links a:hover,
body.dark-mode .nav-links a.active,
body.dark-mode .portfolio-category {
    color: #84c2ff;
}

body.dark-mode .portfolio-overlay,
body.dark-mode .gallery-overlay {
    background: rgba(8, 12, 18, 0.92);
}

body.dark-mode .cta-button {
    background: #84c2ff;
    color: #0f172a;
    box-shadow: 0 6px 20px rgba(132,194,255,0.2);
}

body.dark-mode .cta-button:hover {
    background: #a4c9ff;
}

body.dark-mode .theme-toggle {
    background: linear-gradient(135deg, #2d3a4e, #19202c);
    box-shadow: 0 4px 15px rgba(0,0,0,0.35);
}

body.dark-mode .menu-toggle {
    border-color: rgba(255,255,255,0.65);
}

body.dark-mode .menu-toggle span,
body.dark-mode .menu-toggle span::before,
body.dark-mode .menu-toggle span::after {
    background: #e8eef9;
}

body.dark-mode .nav-links a {
    color: #e8eef9;
}

body.dark-mode .nav-links a:hover,
body.dark-mode .nav-links a.active {
    color: #84c2ff;
}

/* Dark mode toggle */
.theme-toggle {
    background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.08));
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 50px;
    color: white;
    font-size: 1.15rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1rem;
    min-width: 48px;
    min-height: 48px;
    box-shadow: inset 0 0 0 rgba(255,255,255,0.08,0);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    margin-left: 1rem;
}

.theme-toggle:hover {
    transform: scale(1.05);
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.6);
}

.theme-toggle:active {
    transform: scale(0.98);
}

@media (max-width: 768px) {
    .theme-toggle {
        min-width: 42px;
        min-height: 42px;
        font-size: 1rem;
        margin-left: 0.5rem;
    }
}

/* Kapcsolat oldal reszponzív grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

/* Átfogó Mobilos Optimalizálás és Szépítés */
@media (max-width: 768px) {
    /* Kapcsolat oldal grid */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem !important;
    }
    
    .contact-form-row {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    /* Általános térközök finomhangolása */
    .container {
        padding: 0 1.5rem;
    }
    
    .hero {
        padding: 5rem 0 3rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    /* Szekciók paddingjének csökkentése */
    .services, .info-section, .about-section, .gallery-section, .services-section {
        padding: 4rem 0;
    }
    
    .stats-section {
        padding: 3rem 0;
    }
    
    /* Grid-ek szépítése mobilon */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
}
