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

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


.contact-container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
    font-family: Arial, sans-serif;
}

.contact-container h1 {
    color: #0277bd;
    text-align: center;
    margin-bottom: 1rem;
}

.contact-info, .contact-form {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.contact-info h2, .contact-form h2 {
    color: #0277bd;
    margin-top: 0;
    margin-bottom: 0.8rem;
}

.contact-info p, .contact-info ul {
    margin: 0.5rem 0;
    line-height: 1.6;
}

.contact-info ul {
    list-style: disc inside;
    padding-left: 0;
}

.map-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: #fff;
    background-color: #0277bd;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    text-decoration: none;
}

.map-link:hover {
    background-color: #015a8b;
}

/* Űrlap stílus */
.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-top: 0.8rem;
    margin-bottom: 0.2rem;
    font-weight: bold;
}

.contact-form input, .contact-form textarea {
    padding: 0.6rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    resize: vertical;
}

.contact-form button {
    margin-top: 1rem;
    padding: 0.8rem;
    background-color: #0277bd;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background-color: #015a8b;
}
/* Üzenet visszajelzés */
.success {
    color: green;
    text-align: center;
    margin-bottom: 1rem;
}

.error {
    color: red;
    text-align: center;
    margin-bottom: 1rem;
}