    :root {
      --primary: #c62828;           /* Élénk piros */
      --accent: #f9a825;           /* Napfény sárga */
      --light: #fff8e1;
      --dark: #4e342e;             /* Meleg barna */
    }

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

    body {
      font-family: 'Raleway', sans-serif;
      line-height: 1.6;
      background-color: var(--light);
      color: var(--dark);
    }

    h1, h2, h3, h4 {
      font-family: 'Playfair Display', serif;
    }

    header, section, footer {
      padding: 2rem 2rem;
      width: 100%;
    }

    header {
      background: linear-gradient(135deg, var(--primary), #e53935);
      color: white;
      text-align: center;
      padding-top: 6rem;
      #padding-bottom: 6rem;
    }

    header h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
      animation: fadeInDown 1s ease;
    }

    nav {
      position: fixed;
      top: 0;
      width: 100%;
      background: white;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      z-index: 1000;
    }

    nav ul {
      display: flex;
      justify-content: center;
      list-style: none;
    }

    nav li a {
      display: block;
      padding: 1rem;
      text-decoration: none;
      color: var(--primary);
      transition: color 0.3s;
      font-weight: bold;
    }

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

    xh2 {
      color: var(--primary);
      margin-bottom: 1rem;
    }

    .slideshow img {
      width: 100%;
      max-height: 400px;
      object-fit: cover;
      border-radius: 8px;
      animation: fadeIn 1s ease;
    }

    .features ul {
      list-style: disc;
      margin-left: 2rem;
      margin-top: 1rem;
    }

    a {
      color: var(--accent);
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    footer {
      text-align: center;
      background: var(--primary);
      color: white;
      padding: 2rem 1rem;
    }

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

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }


