.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;
}

.services-container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.service {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.service:hover {
    transform: translateY(-3px);
    border-color: #0277bd; /* illeszkedik a header színéhez */
}

.service h2 {
    margin-top: 0;
    color: #0277bd;
}

.service p {
    line-height: 1.6;
    margin-top: 0.5rem;
}


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