* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}
body {
  line-height: 1.6;
  background-color: #f4f4f4;
}
header {
  background: #001f3f;
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
}
section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}
h2 {
  margin-bottom: 20px;
  color: #001f3f;
}


.landing h1 {
  background: rgba(0, 0, 0, 0.5); /* félig átlátszó háttér */
  padding: 20px;
  border-radius: 10px;

}
footer {
  text-align: center;
  padding: 20px;
  background: #001f3f;
  color: white;
}


button {
  background-color: #007BFF;
  color: white;
  padding: 12px 24px;
  font-size: 1.1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 10px;
}

button:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}

form input, form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

section {
  animation: fadeIn 0.8s ease-in-out both;
}

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


/* Parallax background for landing */
.landing {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Responsive layout */
@media (max-width: 768px) {
  nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .sectors {
    flex-direction: column;
  }
}

/* Animate icons (if used in future) */
.animated-icon {
  display: inline-block;
  transition: transform 0.4s ease;
}
.animated-icon:hover {
  transform: rotate(10deg) scale(1.1);
}


.image-text {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.image-text .text {
  flex: 1;
  min-width: 280px;
}

.image-text .image {
  flex: 1;
  min-width: 280px;
}

.image-text img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}


.contact-image {
  display: block;
  max-width: 500px;
  width: 100%;
  margin: 20px auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.image-text {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.image-text .text {
  flex: 1;
  min-width: 280px;
}

.image-text .image {
  flex: 1;
  min-width: 280px;
}

.image-text img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.image-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.image-row img {
  width: 45%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.image-text {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.image-text .text {
  flex: 1;
  min-width: 280px;
}

.image-text .image {
  flex: 1;
  min-width: 280px;
}

.image-text img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

