.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  background: #f5f5f5;
}

/* bal oldal */
.logo-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-area img {
  width: 60px;
}

.site-name {
  font-weight: bold;
}

/* középső menü */
.menu {
  display: flex;
  gap: 30px;
}

.menu a {
  text-decoration: none;
  color: black;
  font-weight: 500;
}


.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #f5f5f5;
  border-top: 1px solid #ddd;
  font-size: 14px;
}

/* bal oldal */
.footer-left {
  color: #555;
}

/* jobb oldal */
.footer-right a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.footer-right a:hover {
  text-decoration: underline;
}
.hero {
  padding: 60px 40px;
  background: #ffffff;
}

.hero-content {
  max-width: 900px;
}

.hero h1 {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.hero .lead {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #333;
}

.hero p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #444;
}


.quick-btn {
  display: inline-block;
  background: #e53935;      /* piros = figyelemfelkeltő */
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  transition: 0.2s;
}

.quick-btn:hover {
  background: #c62828;
}

.hero {
  padding: 60px 40px;
  background: #fff;
}

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



.quick-btn {
  display: inline-block;
  background: #e53935;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: 0.2s;
}

.quick-btn:hover {
  background: #c62828;
}
.hero-quick {
  text-align: center;  /* jobb oldalra igazítja a gombot */
  margin-bottom: 20px;
}


body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
}

