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

    :root {
      --primary-color: #2a7b9b;
      --primary-hover: #1f5f7a;
      --secondary-color: #f0f9ff;
      --accent-color: #57c785;
      --text-dark: #1e293b;
      --text-light: #64748b;
      --white: #ffffff;
      --border-color: #e2e8f0;
      --gradient-hover: linear-gradient(90deg, #6a11cb, #2575fc);
      --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
      --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
      --gradient: linear-gradient(90deg, rgba(42, 123, 155, 1) 19%, rgba(95, 163, 151, 1) 44%, rgba(87, 199, 133, 1) 100%);
      --medical-gradient: linear-gradient(90deg, rgba(42, 123, 155, 1) 19%, rgba(95, 163, 151, 1) 44%, rgba(87, 199, 133, 1) 100%);
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: var(--text-dark);
      background-color: var(--white);
    }

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

    /* Header Styles */
    .header {
      background: var(--white);
      box-shadow: var(--shadow);
      position: sticky;
      top: 0;
      z-index: 1000;
      transition: all 0.3s ease;
    }

    .header-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 20px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      color: var(--text-dark);
      font-weight: 600;
      font-size: 1.2rem;
      transition: transform 0.3s ease;
    }

    .brand:hover {
      transform: scale(1.05);
    }

     .brand-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
    .logo {
      width: 60px;
      height: 60px;
      border-radius: 12px;
      transition: transform 0.3s ease;
    }

    .brand:hover .logo {
      transform: rotate(5deg);
    }

    .header-cta {
      background: var(--primary-color);
      color: var(--white);
      padding: 12px 24px;
      text-decoration: none;
      border-radius: 25px;
      font-weight: 500;
      transition: all 0.3s ease;
      box-shadow: var(--shadow);
    }

    .header-cta:hover {
      background: var(--primary-hover);
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
    }

    /* Hero Section */
   
    /* .hero {
      background: var(--medical-gradient);
      color: var(--white);
      padding: 30px 0;
      position: relative;
      overflow: hidden;
    } */

    .hero {
      background: var(--medical-gradient);
      color: var(--white);
      padding: 30px 0;
      min-height: 100vh;
      background-size: cover;
      background-position: center;
      position: relative;
      overflow: hidden;
      justify-content: center;
    }

    /* .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a"><stop offset="0%" stop-color="white" stop-opacity="0.1"/><stop offset="100%" stop-color="white" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="80" fill="url(%23a)"/></svg>') no-repeat;
      background-size: cover;
      opacity: 0.3;
    } */

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: rgba(255,255,255,.30); /* neutrale Aufhellung */
  -webkit-mask:
    radial-gradient(200px 180px at 20% 22%, #000 60%, transparent 61%),
    radial-gradient(320px 260px at 80% 30%, #000 60%, transparent 61%),
    radial-gradient(180px 160px at 40% 75%, #000 60%, transparent 61%);
  mask:
    radial-gradient(200px 180px at 20% 22%, #000 60%, transparent 61%),
    radial-gradient(320px 260px at 80% 30%, #000 60%, transparent 61%),
    radial-gradient(180px 160px at 40% 75%, #000 60%, transparent 61%);
}


    .container-hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 120px;
      align-items: center;
      position: relative;
      z-index: 1;
      
    }

    .hero h1 {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 20px;
      line-height: 1.2;
      animation: fadeInUp 0.8s ease-out;
    }

    .hero p {
      font-size: 1.2rem;
      margin-bottom: 30px;
      opacity: 0.9;
      animation: fadeInUp 0.8s ease-out 0.2s both;
    }

    .cta {
      display: inline-block;
      background: var(--white);
      color: var(--primary-color);
      padding: 18px 36px;
      text-decoration: none;
      border-radius: 30px;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      box-shadow: var(--shadow-lg);
      animation: fadeInUp 0.8s ease-out 0.4s both, pulse 2s infinite;
      position: relative;
      overflow: hidden;
    }

    .cta::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      background: rgba(42, 123, 155, 0.1);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      transition: all 0.6s ease;
    }

    .cta:hover::before {
      width: 300px;
      height: 300px;
    }

    .cta:hover {
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 15px 25px -5px rgba(42, 123, 155, 0.3);
      background: var(--secondary-color);
    }

    @keyframes pulse {
      0%, 100% {
        box-shadow: 0 15px 25px -5px rgba(42, 123, 155, 0.4);
      }
      50% {
        box-shadow: 0 15px 35px -5px rgba(87, 199, 133, 0.6);
      }
    }

    .hero-image {
      position: relative;
      animation: fadeInRight 0.8s ease-out 0.6s both;
       height: calc(100vh - 60px); /* 30px top + 30px bottom Padding */
       justify-content: center;
       padding-top: 30px;
       padding-right: 80px
    }

    .hero-image img {
      width: 100vw;
        max-width: 800px;
      /* width: 100%; */
      /* height: auto; */
      border-radius: 20px;
      box-shadow: var(--shadow-lg);
      transition: transform 0.3s ease;
      height: calc(100vh - 60px); /* 30px top + 30px bottom Padding */
        /* object-fit: cover;
        object-position: center; */
        max-height: 600px;
    }

    .hero-image:hover img {
      transform: scale(1.05);
    }

    .small {
      font-size: 0.9rem;
      opacity: 0.8;
      margin-top: 15px;
      animation: fadeInUp 0.8s ease-out 0.6s both;
    }

    /* Section Styles */
    .section {
      padding: 80px 0;
    }

    .section:nth-child(even) {
      background: var(--secondary-color);
    }

    .section h2 {
      font-size: 2.5rem;
      text-align: center;
      margin-bottom: 50px;
      color: var(--text-dark);
      position: relative;
    }

    .section h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: var(--primary-color);
      border-radius: 2px;
    }

    /* Grid Layout */
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    /* Card Styles */
    .card {
      background: var(--white);
      border-radius: 15px;
      padding: 30px;
      box-shadow: var(--shadow);
      transition: all 0.3s ease;
      border: 1px solid var(--border-color);
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--medical-gradient);
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }

    .card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
    }

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

    .card h3 {
      font-size: 1.3rem;
      margin-bottom: 10px;
      color: var(--text-dark);
    }

    .card p {
      color: var(--text-light);
      margin-bottom: 20px;
    }

    .doctor-image {
      display: flex;
      justify-content: center;
      margin-bottom: 20px;
    }

    .doctor-image svg {
      transition: transform 0.3s ease;
    }

    .card:hover .doctor-image svg {
      transform: scale(1.1) rotate(5deg);
    }

    .doctor-buttons {
      display: flex;
      gap: 10px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--primary-color);
      flex: 1;
      min-width: 120px;
    }

    .btn-secondary {
      background: var(--accent-color);
      flex: 1;
      min-width: 120px;
    }

    .btn-secondary:hover {
      background: #45b373;
    }

    .btn {
      display: inline-block;
      background: var(--primary-color);
      color: var(--white);
      padding: 12px 24px;
      text-decoration: none;
      border-radius: 25px;
      font-weight: 500;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .btn:hover {
      background: var(--primary-hover);
      transform: translateY(-2px);
    }

    .badge {
      display: inline-block;
      background: var(--accent-color);
      color: var(--white);
      padding: 6px 12px;
      border-radius: 15px;
      font-size: 0.8rem;
      font-weight: 500;
      margin-bottom: 15px;
    }

    /* Contact Section */
    .kapcsolat {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }

    .kapcsolat a {
      color: var(--primary-hover);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .kapcsolat a:hover {
      color: var(--accent-color); 
    }

    #kapcsolat-btn {
      background: var(--primary-color);
      color: var(--white);
      padding: 12px 24px;
      text-decoration: none;
      border-radius: 25px;
      font-weight: 500;
      transition: all 0.3s ease;
      box-shadow: var(--shadow);
      display: inline-block;
      margin-top: 20px;
    }

    /* Footer */
    .footer {
      background: var(--text-dark);
      color: var(--white);
      padding: 40px 0;
    }

    .footer .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer .small {
      opacity: 0.7;
    }

    .footer a {
  background: linear-gradient(90deg, #ff7e5f, #feb47b);
  background-clip: text;               /* Standard */
  -webkit-background-clip: text;       /* Chrome, Safari */
  color: transparent;                  /* Standard */
  -webkit-text-fill-color: transparent;/* Chrome, Safari */
}

.footer a:hover {
  background: var(--gradient-hover);
background-clip: text;               /* Standard */
  -webkit-background-clip: text;       /* Chrome, Safari */
  color: transparent;                  /* Standard */
  text-decoration: underline;
}

    /* Sticky CTA */
    .sticky-cta {
      position: fixed;
      bottom: 70px;
      right: 20px;
      z-index: 1000;
      animation: slideInUp 0.5s ease-out;
    }

    .sticky-cta a {
      display: block;
      background: var(--medical-gradient);
      color: var(--white);
      padding: 15px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      box-shadow: var(--shadow-lg);
      transition: all 0.3s ease;
      animation: floatUpDown 3s ease-in-out infinite;
    }

    @keyframes floatUpDown {
      0%, 100% {
        transform: translateY(0px);
      }
      50% {
        transform: translateY(-5px);
      }
    }

    .sticky-cta a:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.3);
    }

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

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

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

    /* Scroll animations */
    .scroll-reveal {
      opacity: 0;
      transform: translateY(50px);
      transition: all 0.6s ease;
    }

    .scroll-reveal.revealed {
      opacity: 1;
      transform: translateY(0);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {

      .container-hero-inner {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
      }

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

      .header-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
      }
/* taggen */
  /* 1) Den "taggen"-Block rückgängig machen */
  .hero {
    position: relative;         /* statt absolute */
    top: auto; left: auto; right: auto; bottom: auto;
    min-height: auto;           /* 100vh ist mobil oft nervig; optional lassen */
    padding: 40px 0;            /* etwas Luft */
    overflow: hidden;           /* ok */
  }

  /* 2) Grid: eine Spalte, normal */
  .container-hero-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
    align-items: start;         /* statt center → verhindert unnötiges Strecken */
  }

  /* 3) Bild-Container: keine Extra-Paddings/Heights */
  .hero-image {
    padding: 0;                 /* wichtig: kein padding-right: 80px */
    height: auto;               /* fixe Höhe raus */
    justify-content: center;
  }

  /* 4) Bild selbst: innerhalb des Containers bleiben */
  .hero-image img {
    width: 100%;                /* statt 100vw */
    max-width: 100%;            /* überschreibt max-width: 800px */
    height: auto;               /* überschreibt calc(100vh - 60px) */
    display: block;
    margin: 0 auto;
    /* Wenn du lieber „groß & bündig“ willst:
       height: 50vh; object-fit: cover; object-position: center; width: 100%; */
  }
}


    /* taggen ende */



      .brand-text {
       
        color: var(--text-dark);
      }

     

      .kapcsolat {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .footer .container {
        flex-direction: column;
        gap: 5px;
        text-align: center;
        margin-bottom: 30px;
      }

      .section h2 {
        font-size: 2rem;
      }

      .sticky-cta {
        bottom: 10px;
        right: 10px;
      }

      .sticky-cta a {
        padding: 12px 20px;
        font-size: 0.9rem;
      }
    @media (max-width: 748px) {
       .grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 480px) {
      .hero {
        padding: 60px 0;
      }

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

      .section {
        padding: 60px 0;
      }

      .card {
        padding: 20px;
      }
    }

    /* Loading animation */
    .page-loader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--white);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 10000;
      transition: opacity 0.5s ease;
    }

    .loader {
      width: 50px;
      height: 50px;
      border: 4px solid var(--border-color);
      border-top: 4px solid var(--primary-color);
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    .page-loader.hidden {
      opacity: 0;
      pointer-events: none;
    }