    body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background-color: #fdfdfd;
      color: #333;
      line-height: 1.6;
    }

    nav {
      background-color: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 1rem 2rem;
      border-bottom: 1px solid #eee;
      position: sticky;
      top: 0;
      box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
      z-index: 1000;
      transition: all 0.3s ease;
      overflow-x: auto;
      min-height: 60px;
    }

    .nav-container {
      display: flex;
      align-items: center;
      gap: 2rem;
      width: 100%;
      max-width: 1200px;
      position: relative;
    }

    .nav-logo {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: 2px solid rgba(127, 214, 165, 0.4);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      object-fit: cover;
      flex-shrink: 0;
      position: absolute;
      left: 0;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      align-items: center;
      margin: 0 auto;
    }

    nav::-webkit-scrollbar {
      height: 4px;
    }

    nav::-webkit-scrollbar-track {
      background: rgba(127, 214, 165, 0.1);
      border-radius: 2px;
    }

    nav::-webkit-scrollbar-thumb {
      background: rgba(127, 214, 165, 0.5);
      border-radius: 2px;
    }

    nav::-webkit-scrollbar-thumb:hover {
      background: rgba(127, 214, 165, 0.7);
    }

    nav.scrolled {
      background-color: rgba(255, 255, 255, 0.98);
      padding: 0.8rem 2rem;
    }

    nav.scrolled .nav-container {
      transition: all 0.3s ease;
    }

    nav a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      padding: 0.8rem 1.2rem;
      position: relative;
      transition: all 0.3s ease;
      border-radius: 8px;
      overflow: hidden;
      white-space: nowrap;
      flex-shrink: 0;
    }

    nav a::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      height: 2px;
      width: 0%;
      background: linear-gradient(90deg, #7fd6a5, #5bc27a);
      transition: width 0.3s ease;
      border-radius: 1px;
    }

    nav a:hover::after {
      width: 80%;
    }

    nav a:hover {
      color: #2d5a3d;
      background-color: transparent;
      transform: translateY(-1px);
    }

    .hero {
      background: linear-gradient(135deg, #e3f8e0, #7fd6a5);
      padding: 4rem 1rem;
      text-align: center;
      box-shadow: 0 4px 20px rgba(127, 214, 165, 0.15);
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
      animation: subtle-sparkle 6s ease-in-out infinite;
    }

    @keyframes subtle-sparkle {
      0%, 100% { transform: rotate(0deg) scale(1); opacity: 0.2; }
      50% { transform: rotate(180deg) scale(1.05); opacity: 0.4; }
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
    }

    .hero h1 {
      margin: 0 0 1rem 0;
      font-size: 3.5rem;
      font-weight: 400;
      font-family: 'Great Vibes', cursive;
      color: #2d5a3d;
      text-shadow: 0 2px 6px rgba(0,0,0,0.15);
      letter-spacing: 1px;
    }

    .hero-subtitle {
      font-size: 1.4rem;
      color: #2d5a3d;
      font-weight: 300;
      text-shadow: 0 1px 2px rgba(0,0,0,0.05);
    }

    @media (max-width: 768px) {
      nav {
        padding: 1rem;
      }
      
      .nav-container {
        gap: 1rem;
        padding-left: 60px;
      }

      .nav-links {
        gap: 0.5rem;
      }

      .nav-logo {
        width: 40px;
        height: 40px;
      }
      
      nav a {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
      }

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

      .hero-subtitle {
        font-size: 1.1rem;
      }
    }

    @media (max-width: 480px) {
      nav {
        padding: 1rem 0.5rem;
      }

      .nav-container {
        gap: 0.5rem;
        padding-left: 50px;
      }

      .nav-links {
        gap: 0.2rem;
        margin: 0;
      }
      
      nav a {
        padding: 0.6rem 0.6rem;
        font-size: 0.8rem;
      }

      .hero {
        padding: 3rem 1rem;
      }

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

      .hero-subtitle {
        font-size: 1rem;
      }
    }

    section {
      max-width: 900px;
      margin: auto;
      padding: 2rem;
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s ease;
    }

    section.visible {
      opacity: 1;
      transform: translateY(0);
    }

    h2 {
      color: #2d5a3d;
      font-size: 2rem;
      margin-bottom: 1.5rem;
      position: relative;
      text-align: center;
    }

    h2::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 50%;
      transform: translateX(-50%);
      width: 50px;
      height: 3px;
      background: linear-gradient(90deg, #7fd6a5, #5bc27a);
      border-radius: 2px;
    }

    .intro {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      align-items: center;
      background: rgba(255, 255, 255, 0.7);
      padding: 2rem;
      border-radius: 15px;
      box-shadow: 0 8px 25px rgba(127, 214, 165, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(127, 214, 165, 0.2);
      transition: all 0.3s ease;
    }

    .intro:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 35px rgba(127, 214, 165, 0.15);
    }

    .intro-text {
      width: 100%;
      text-align: justify;
    }

    .intro-image {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      flex-shrink: 0;
    }

    .intro img {
      max-width: 280px;
      border-radius: 12px; /* lekerekített sarkok, modernebb megjelenés */
      border: 3px solid rgba(127, 214, 165, 0.6);
      box-shadow: 0 6px 20px rgba(127, 214, 165, 0.25);
      transition: all 0.3s ease;
      object-fit: cover;
    }

    .intro img:hover {
      transform: scale(1.03);
      box-shadow: 0 10px 25px rgba(127, 214, 165, 0.35);
    }


    .image-caption {
      font-style: italic;
      color: #2d5a3d;
      font-weight: 500;
      text-align: center;
      margin: 0;
      font-size: 1.1rem;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }

    @media (max-width: 768px) {
      .intro {
        text-align: center;
      }
    }

    .services ul {
      list-style: none;
      padding: 0;
      display: grid;
      gap: 1.5rem;
    }

    .services li {
      background: rgba(255, 255, 255, 0.8);
      padding: 1.5rem;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(127, 214, 165, 0.08);
      border: 1px solid rgba(127, 214, 165, 0.15);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .services li::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, #7fd6a5, #5bc27a);
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }

    .services li:hover::before {
      transform: scaleX(1);
    }

    .services li:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(127, 214, 165, 0.15);
      background: rgba(255, 255, 255, 0.95);
    }

    .services h3 {
      color: #2d5a3d;
      margin-bottom: 0.5rem;
      font-size: 1.2rem;
    }

    .gallery {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      margin-top: 1rem;
    }

    @media (max-width: 600px) {
      .gallery {
        grid-template-columns: 1fr;
      }
    }

    .gallery img {
      width: 100%;
      border-radius: 12px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(127, 214, 165, 0.1);
      border: 2px solid rgba(127, 214, 165, 0.1);
      cursor: pointer;
    }

    .gallery img:hover {
      transform: scale(1.03);
      box-shadow: 0 8px 25px rgba(127, 214, 165, 0.2);
      border-color: rgba(127, 214, 165, 0.3);
    }

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

    .modal-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      max-width: 90%;
      max-height: 90%;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }

    .modal img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
      max-width: 100%;
      max-height: 80vh;
    }

    .close {
      position: absolute;
      top: 20px;
      right: 30px;
      color: white;
      font-size: 35px;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
      background: rgba(0, 0, 0, 0.5);
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      line-height: 1;
    }

    .close:hover {
      color: #7fd6a5;
      background: rgba(0, 0, 0, 0.7);
      transform: scale(1.1);
    }

    #kapcsolat {
      background: rgba(255, 255, 255, 0.8);
      padding: 2rem;
      border-radius: 15px;
      box-shadow: 0 8px 25px rgba(127, 214, 165, 0.1);
      text-align: center;
      border: 1px solid rgba(127, 214, 165, 0.2);
    }

    #kapcsolat p {
      margin: 1rem 0;
      font-size: 1.1rem;
    }

    #kapcsolat a {
      color: #2d5a3d;
      text-decoration: none;
      transition: all 0.3s ease;
      font-weight: 500;
    }

    #kapcsolat a:hover {
      color: #7fd6a5;
      text-shadow: 0 0 8px rgba(127, 214, 165, 0.3);
    }

    footer {
      text-align: center;
      padding: 2rem;
      color: #666;
      font-size: 0.9rem;
      background: linear-gradient(135deg, #f9f9f9, #f0f8f0);
      border-top: 1px solid rgba(127, 214, 165, 0.2);
      margin-top: 2rem;
    }

    .scroll-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: linear-gradient(135deg, #7fd6a5, #5bc27a);
      color: white;
      border: none;
      border-radius: 50%;
      width: 55px;
      height: 55px;
      font-size: 20px;
      cursor: pointer;
      box-shadow: 0 4px 20px rgba(127, 214, 165, 0.3);
      transition: all 0.3s ease;
      opacity: 0;
      visibility: hidden;
      transform: translateY(20px);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1500;
    }

    .scroll-top.visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .scroll-top:hover {
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 6px 25px rgba(127, 214, 165, 0.4);
      background: linear-gradient(135deg, #5bc27a, #4aa966);
    }

    .scroll-top:active {
      transform: translateY(-1px) scale(1.02);
    }

    /* Árváltozás értesítő */
.notice-modal {
  position: fixed;
  z-index: 3000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.notice-modal.active {
  opacity: 1;
  visibility: visible;
}

.notice-content {
  background: #fff;
  border-radius: 15px;
  padding: 2rem 3rem;
  max-width: 600px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  border: 3px solid #d4af37;
  animation: fadeInUp 0.4s ease;
}

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

.notice-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 2rem;
  color: #333;
  cursor: pointer;
  transition: color 0.2s ease;
}

.notice-close:hover {
  color: #7fd6a5;
}

.notice-content .icon {
  font-size: 3rem;
  margin-bottom: 10px;
}

.notice-content h2 {
  color: #2d5016;
  font-size: 2rem;
  margin-bottom: 10px;
}

.notice-content .decorative-line {
  width: 80px;
  height: 3px;
  margin: 10px auto 20px auto;
  background: linear-gradient(to right, #2d5016, #d4af37, #2d5016);
  border-radius: 2px;
}

.notice-content .greeting {
  color: #2d5016;
  font-size: 1.3rem;
  font-weight: 500;
}

.notice-content .message {
  color: #333;
  font-size: 1.2rem;
  margin: 15px 0;
}

.notice-content .date-highlight {
  color: #d4af37;
  font-weight: bold;
  font-size: 1.4rem;
}

.notice-content .thank-you {
  color: #2d5016;
  font-style: italic;
  margin-top: 10px;
  font-size: 1rem;
}

.notice-content .signature {
  color: #d4af37;
  font-family: 'Brush Script MT', cursive;
  font-size: 1.8rem;
  margin-top: 10px;
}
