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

html, body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fafafa;
    scroll-behavior: smooth;
    overscroll-behavior: none; /* tiltja az “over-scroll bounce”-ot */

}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #e5e5e5;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
    display: inline-flex;       /* Egy sorban tartja a képet és a szöveget */
    align-items: center;
    gap: 8px;

}

.logo img {
    height: 1em;                /* A szöveg magasságához igazítja a kép méretét */
    width: auto;                /* Megőrzi az arányokat */
    display: block;             /* Eltünteti az alapértelmezett inline spacing-et */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #1a1a1a;
}

/* Main content 
main {
    padding: 80px 0 0;
}
    */

/* Hero section */
.hero {
    text-align: center;
    padding: 120px 0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 1;
}

.grid-line {
    position: absolute;
    background: linear-gradient(90deg, transparent 0%, #e5e5e5 50%, transparent 100%);
}

.grid-line.horizontal {
    width: 100%;
    height: 1px;
    animation: slideRight 8s ease-in-out infinite;
}

.grid-line.vertical {
    height: 100%;
    width: 1px;
    background: linear-gradient(0deg, transparent 0%, #e5e5e5 50%, transparent 100%);
    animation: slideDown 10s ease-in-out infinite;
}

.grid-1 { top: 20%; animation-delay: 0s; }
.grid-2 { top: 40%; animation-delay: 2s; }
.grid-3 { top: 60%; animation-delay: 4s; }
.grid-4 { top: 80%; animation-delay: 1s; }

.grid-v1 { left: 15%; animation-delay: 1s; }
.grid-v2 { left: 35%; animation-delay: 3s; }
.grid-v3 { left: 55%; animation-delay: 0s; }
.grid-v4 { left: 75%; animation-delay: 2s; }
.grid-v5 { left: 85%; animation-delay: 4s; }

@keyframes slideRight {
    0%, 100% { transform: translateX(-100%); opacity: 0; }
    10%, 90% { opacity: 1; }
    50% { transform: translateX(0%); opacity: 1; }
}

@keyframes slideDown {
    0%, 100% { transform: translateY(-100%); opacity: 0; }
    10%, 90% { opacity: 1; }
    50% { transform: translateY(0%); opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 64px;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a1a1a;
    opacity: 0;
    animation: textReveal 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

.hero h1 .word {
    display: inline-block;
    overflow: hidden;
}

.hero h1 .char {
    display: inline-block;
    transform: translateY(100%);
    animation: charSlideUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes textReveal {
    to { opacity: 1; }
}

@keyframes charSlideUp {
    to { transform: translateY(0%); }
}

.hero p {
    font-size: 20px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 48px;
    font-weight: 400;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s forwards;
}

.hero .cta-button {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: buttonReveal 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.3s forwards;
    position: relative;
    overflow: hidden;
}

.hero .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.hero .cta-button:hover::before {
    left: 100%;
}

@keyframes buttonReveal {
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1);
    }
}

/* Morphing background shapes */
.morph-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #f69f2683, #f5c9444a);
    animation: morphFloat 15s ease-in-out infinite;
    z-index: 1;
}

.morph-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.morph-2 {
    width: 150px;
    height: 150px;
    top: 70%;
    right: 10%;
    animation-delay: 5s;
}

.morph-3 {
    width: 120px;
    height: 120px;
    top: 40%;
    right: 20%;
    animation-delay: 10s;
}

.morph-4 {
    width: 180px;
    height: 150px;
    top: 1%;
    right: 50%;
    animation-delay: 10s;
}

.morph-5 {
    width: 120px;
    height: 100px;
    top: 60%;
    right: 80%;
    animation-delay: 10s;
}

@keyframes morphFloat {
    0%, 100% {
        transform: translateX(0px) translateY(0px) scale(1);
        border-radius: 50%;
    }
    25% {
        transform: translateX(20px) translateY(-30px) scale(1.1);
        border-radius: 35% 65% 70% 30% / 30% 40% 60% 70%;
    }
    50% {
        transform: translateX(-15px) translateY(-20px) scale(0.9);
        border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
    }
    75% {
        transform: translateX(25px) translateY(10px) scale(1.05);
        border-radius: 40% 60% 50% 50% / 70% 30% 70% 30%;
    }
}

.cta-button {
    background: #1a1a1a;
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
    cursor: pointer;
}

.cta-button:hover {
    background: #333;
    transform: translateY(-1px);
}

/* Stats section */
.stats {
    background: white;
    padding: 80px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    text-align: center;
}

.stat {
    padding: 0 16px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

/* About section */
.about {
    padding: 120px 0;
    /*background: #fafafa;*/
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.about-text h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.about-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.feature {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #e5e5e5;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-profile {
    background: white;
    padding: 10px;
    border-radius: 16px;
    border: 1px solid #e5e5e5;
    text-align: center;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: block;
}

.feature h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.feature p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Donation section */
.donation {
    background: white;
    padding: 120px 0;
    text-align: center;
}

.donation h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.donation-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 64px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.donation-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.donation-option {
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    padding: 32px 24px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.donation-option:hover {
    border-color: #1a1a1a;
    transform: translateY(-2px);
}

.donation-option.selected {
    border-color: #1a1a1a;
    background: #1a1a1a;
    color: white;
}

.donation-amount {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.donation-description {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.donation-option.selected .donation-description {
    color: #ccc;
}

.custom-donation {
    max-width: 400px;
    margin: 0 auto 48px;
}

.custom-input {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 32px;
    transition: border-color 0.2s ease;
}

.custom-input:focus-within {
    border-color: #1a1a1a;
}

.custom-input input {
    border: none;
    outline: none;
    font-size: 18px;
    font-weight: 600;
    width: 100%;
    background: transparent;
    color: #1a1a1a;
}

.custom-input input::placeholder {
    color: #999;
    font-weight: 500;
}

.currency {
    font-size: 16px;
    color: #666;
    font-weight: 600;
    margin-left: 8px;
}

.donate-btn {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 20px 48px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.donate-btn:hover {
    background: #333;
    transform: translateY(-1px);
}

.donate-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 48px 0;
}

.footer-content p {
    color: #999;
    font-size: 14px;
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .hero p {
        font-size: 18px;
    }

    .hero {
        padding: 80px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-text h2,
    .donation h2 {
        font-size: 36px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .donation-options {
        grid-template-columns: 1fr;
    }
}

/* Smooth animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-icon-profile {
    width: 80%;
    height: 70%;
    border-radius: 20%;
    object-fit: cover;
    margin-bottom: 10px;
  }
  
/*events*/

.events-section {
    padding: 60px 20px;
    text-align: center;
    max-width: 1300px;
    margin: 0 auto;
}

.events-section h2 {
    font-size: 2.4em;
    margin-bottom: 40px;
    color: #222;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    justify-items: center;
}

/* Eseménykártyák */
.event-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    width: 100%;
    max-width: 400px;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.event-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.event-card h3 {
    font-size: 1.6em;
    margin: 20px 0 10px;
    color: #222;
    padding: 5px;
}

.event-card .date {
    color: #666;
    font-size: 1em;
    margin-bottom: 20px;
}

/* --- Reszponzív töréspontok --- */

/* Tableten: 2 oszlop */
@media (max-width: 992px) {
    .events-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .event-card img {
        height: 220px;
    }

    .event-card h3 {
        font-size: 1.4em;
    }
}

/* Mobilon: 1 oszlop */
@media (max-width: 600px) {
    .events-section {
        padding: 40px 10px;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .event-card {
        max-width: 100%;
    }

    .event-card img {
        height: 200px;
    }

    .event-card h3 {
        font-size: 1.3em;
    }

    .event-card .date {
        font-size: 0.9em;
    }
}

/* --- Esemény részletes oldal (szélesebb és tartalmasabb) --- */

.event-detail.wide {
    padding: 80px 40px;
    max-width: 1500px; /* nagyobb szélesség */
    margin: 0 auto;
    text-align: left;  /* balra igazított szöveg */
    line-height: 1.7;
}

.event-detail.wide h1 {
    font-size: 2.6em;
    margin-bottom: 10px;
    text-align: center;
}

.event-detail.wide .event-date {
    text-align: center;
    font-size: 1.2em;
    color: #777;
    margin-bottom: 40px;
}

.event-detail.wide .event-description {
    font-size: 1.15em;
    color: #333;
    margin-bottom: 25px;
}

.event-gallery.large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 50px 0;
}

.event-gallery.large img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.event-gallery.large img:hover {
    transform: scale(1.04);
}

.back-link {
    display: inline-block;
    margin-top: 30px;
    text-decoration: none;
    color: #0077cc;
    font-weight: 600;
    transition: color 0.3s;
}

.back-link:hover {
    color: #004999;
}

/* --- Mobilbarát nézet --- */
@media (max-width: 768px) {
    .event-detail.wide {
        padding: 50px 20px;
        max-width: 95%;
    }

    .event-gallery.large {
        grid-template-columns: 1fr;
    }

    .event-gallery.large img {
        height: 200px;
    }

    .event-detail.wide h1 {
        font-size: 2em;
    }
}


/* --- Extra mobilbarát finomhangolás segitseg--- */
@media (max-width: 768px) {
    /* Fejléc */
    header nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo {
        font-size: 20px;
        margin-bottom: 10px;
    }

    /* Tartalom 
    main {
        margin-top: 100px;
        padding: 40px 0;
    }
    */

    .about-text h2 {
        font-size: 28px;
        text-align: center;
    }

    .about-text h3 {
        font-size: 22px;
        margin-top: 24px;
    }

    .about-text p {
        font-size: 16px;
        text-align: justify;
    }

    /* Funkciók (segítség módjai) */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        margin-top: 20px;
    }

    .feature {
        padding: 24px;
        font-size: 15px;
    }

    .feature-icon {
        font-size: 28px;
    }

    footer {
        padding: 32px 10px;
        font-size: 14px;
    }
}

/* Kisebb mobilokra */
@media (max-width: 480px) {
    .logo {
        font-size: 18px;
    }

    .about-text h2 {
        font-size: 24px;
    }

    .about-text p {
        font-size: 15px;
    }

    .feature h3 {
        font-size: 16px;
    }

    .feature p {
        font-size: 13px;
    }
}


/*sandwich btn*/
/* ===== HAMBURGER GOMB ===== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    cursor: pointer;
    margin-left: auto;
    position: relative;
    z-index: 1100;
  }
  
  .hamburger span {
    position: absolute;
    width: 24px;
    height: 2.5px;
    background: #333;
    border-radius: 2px;
    transition: all 0.35s ease;
  }
  
  .hamburger span:nth-child(1) {
    top: 10px;
  }
  
  .hamburger span:nth-child(2) {
    top: 15px;
  }
  
  .hamburger span:nth-child(3) {
    top: 20px;
  }
  
  /* Szimmetrikus X animáció */
  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 15px;
  }
  
  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 15px;
  }
  
  /* ===== MOBIL MENÜ ===== */
  @media (max-width: 768px) {
    .nav-links {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 85px; /* kicsit lejjebb a hamburger alól */
      right: 10px; /* jobb oldalhoz igazítva */
      background: white;
      border-radius: 10px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
      padding: 10px 15px;
      z-index: 1000;
  
      opacity: 0;
      transform: translateY(-10px);
      pointer-events: none;
      transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    }
  
    .nav-links.active {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
  
    .hamburger {
      display: flex;
    }
  
    nav ul li {
      margin: 8px 0;
    }
  
    nav ul li a {
      color: #333;
      font-weight: 500;
      text-decoration: none;
    }
  
    nav ul li a:hover {
      color: #0078ff;
    }
  }
  

/*------------*/

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }
        header {
            background: linear-gradient(135deg, #f6a026 0%, #fecb37 100%);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo {
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
            text-decoration: none;
            transition: opacity 0.3s;
        }
        .logo:hover {
            opacity: 0.8;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
            align-items: center;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 800;
            transition: all 0.3s;
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 17px;
        }
        .nav-links a:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        /* Hamburger menü gomb */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            padding: 5px;
            background: none;
            border: none;
            z-index: 1001;
        }
        .menu-toggle span {
            width: 28px;
            height: 3px;
            background: white;
            border-radius: 3px;
            transition: all 0.3s ease;
            display: block;
        }
        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }
        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
        /* Mobil nézet */
        @media (max-width: 857px) {
            .menu-toggle {
                display: flex;
            }
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 280px;
                background: linear-gradient(135deg, #dd9a4d 0%, #de8e32 100%);
                flex-direction: column;
                justify-content: center;
                gap: 20px;
                transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
                box-shadow: -5px 0 20px rgba(0,0,0,0.3);
            }
            .nav-links.active {
                right: 0;
            }
            .nav-links a {
                font-size: 1.2rem;
                padding: 12px 24px;
                width: 80%;
                text-align: center;
            }
            /* Overlay a háttérre */
            .overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: rgba(0, 0, 0, 0.5);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s;
                z-index: 999;
            }
            .overlay.active {
                opacity: 1;
                visibility: visible;
            }
        }
        /* Demo tartalom */
        .demo-content {
            padding: 40px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .demo-content h1 {
            color: #667eea;
            margin-bottom: 20px;
        }
        .demo-content p {
            line-height: 1.6;
            color: #333;
            margin-bottom: 15px;
        }


@media (max-width: 768px) {
    nav, .nav-links {
        max-width: 100%;
        overflow-x: hidden;
    }
}

body {
    overflow-x: hidden;
}

html, body {
    overflow-x: hidden !important;
}









/* Általános bekezdés-stílusok */
.about-text p {
    max-width: 650px;         /* ne legyen túl széles nagy kijelzőn sem */
    margin: 0 auto 20px;      /* középre igazítás, alatta kis tér */
    line-height: 1.75;        /* szellősebb sorok */
    font-size: 1.2em;        /* kellemes méret */
    color: #333;              /* jó olvashatóság */
}

/* Címsorok egységesítése */
.about-text h2 {
    font-size: 2.2em;
    margin-bottom: 25px;
    font-weight: 700;
    color: #222;
}

/* Mobilbarát design */
@media (max-width: 768px) {
    .about-text {
        width: 90% !important;     /* szép margó mobilon */
        margin: 0 auto 40px !important;
        text-align: center;
    }

    .about-text p {
        font-size: 1em;
        line-height: 1.7;
    }

    .about-text h2 {
        font-size: 1.7em;
    }
}


.about-text p {
    text-align: justify;      /* SORKIZÁRT */
    text-align-last: center;  /* az utolsó sor középre igazítva szebben mutat */
    max-width: 650px;
    margin: 0 auto 20px;
    line-height: 1.75;
    font-size: 1.2em;
    color: #333;
}

@media (max-width: 768px) {
    .about-text p {
        text-align: justify;
        text-align-last: center;
        font-size: 1em;
        line-height: 1.7;
    }
}

.about-text h3, h2 {
    text-align: justify;      /* SORKIZÁRT */
    text-align-last: center;  /* az utolsó sor középre igazítva szebben mutat */
    
}

@media (max-width: 768px) {
    .about-text h3, h2 {
        text-align: justify;
        text-align-last: center;
        
    }
}





.logo-shadow {
    filter: drop-shadow(0 5px 8px rgba(0,0,0,0.5));
    border-radius: 999px;
}


.logo-shadow {
    max-width: 100%;
    height: auto;
    display: block;
}

.about-text p {
    text-align: center;   /* vagy center, ahogy szeretnéd */
}
