* { box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; margin: 0; background: #f8f9fb; color: #333; line-height: 1.6; }
header {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('hero.webp') center/cover;
  color: white;
  height: 100vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
}
header.nagyker-integracio {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('hero-nagyker.webp') center/cover;
  color: white;
  height: 100vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
}
header h1 { font-size: 3rem; margin-bottom: 1rem; line-height: 1.3;width: 80%;}
header p { font-size: 1.5rem; max-width: 700px; margin: 0 auto; }
.cta {
  margin-top: 2.5rem;
  background: #ffc107;
  padding: 1rem 2rem;
  color: #212529;
  font-weight: bold;
  border: none;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s;
}
.cta:hover { background: #e0a800; }
section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: auto;
}
.cta-list {
  display: inline-block;
  font-size: 0.9rem;
  margin-top: 1.5rem;
}
h2.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
}
h2.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #0d6efd;
  margin: 1rem auto 0;
  border-radius: 2px;
}
.services-list ul {
  list-style: none;
  padding: 0;
  margin-top: 3rem;
}
.services-list li {
  background: #fff;
  margin-bottom: 1.5rem;
  padding: 1.5rem 2rem;
  border: 3px solid #0d6efd;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.services-list h3 {
  margin-top: 0;
  color: #0d6efd;
}
.services-list ul ul {
  margin-top: 1rem;
  padding-left: 1rem;
}
.services-list ul ul li {
  background: none;
  border: none;
  padding: 0.2rem 0;
  margin: 0.2rem 0;
  box-shadow: none;
  color: #333;
  list-style: disc;
}
form {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  max-width: 700px;
  margin: auto;
}
form label {
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}
form input, form textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}
form button {
  background: #0d6efd;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}
form button:hover { background: #0b5ed7; }
footer {
  text-align: center;
  padding: 3rem 2rem;
  background: #212529;
  color: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #fefefe;
    border-top: 1px solid #ccc;
    padding: 20px 15px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    font-family: sans-serif;
    z-index: 9999;
    display: none;
  }

  .cookie-banner-content {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .cookie-banner-content p {
    margin: 0;
    font-size: 15px;
    color: #333;
  }

  .cookie-banner-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  .cookie-banner-buttons button {
    padding: 10px 20px;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }

  .cookie-banner-buttons button:first-child {
    background-color: #007bff;
    color: #fff;
  }

  .cookie-banner-buttons button:first-child:hover {
    background-color: #0056b3;
  }

  .cookie-banner-buttons button:last-child {
    background-color: #e0e0e0;
    color: #333;
  }

  .cookie-banner-buttons button:last-child:hover {
    background-color: #c5c5c5;
  }

  @media (min-width: 600px) {
    .cookie-banner-content {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }
  }

@media (max-width: 768px) {
	header {
	  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('hero-mobile.webp') center/cover;
	  color: white;
	  height: 100vh;
	  text-align: center;
	  display: flex;
	  flex-direction: column;
	  align-items: center;
	  justify-content: center;
	  padding: 0 2rem;
	}
	header.nagyker-integracio {
	  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('hero-nagyker-mobile.webp') center/cover;
	  color: white;
	  height: 100vh;
	  text-align: center;
	  display: flex;
	  flex-direction: column;
	  align-items: center;
	  justify-content: center;
	  padding: 0 2rem;
	}
	header h1 { font-size: 2rem;}
}