/* Alapbeállítások */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fafafa;
  padding: 20px;
  max-width: 960px;
  margin: 0 auto;
}

/* Fejléc */
header {
  text-align: center;
  margin-bottom: 30px;
}

header h1 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 25px;
}

nav ul li a {
  text-decoration: none;
  color: #2980b9;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #1abc9c;
}

/* Fő tartalom */
main section {
  margin-bottom: 40px;
}

main h2 {
  font-size: 2rem;
  color: #34495e;
  margin-bottom: 15px;
  border-bottom: 2px solid #1abc9c;
  padding-bottom: 8px;
}

main p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  text-align: justify;
}

/* Képek */
main img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Lábléc */
footer {
  text-align: center;
  font-size: 0.9rem;
  color: #999;
  padding: 20px 0;
  border-top: 1px solid #ddd;
  margin-top: 40px;
}

/* Linkek a kapcsolat részhez */
#kapcsolat a {
  color: #2980b9;
  text-decoration: none;
}

#kapcsolat a:hover {
  text-decoration: underline;
}