/* Reset / alap */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Fejléc, menü */
.site-header {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo img {
  height: 50px;
}

.site-nav ul {
  list-style: none;
  display: flex;
}

.site-nav ul li {
  margin-left: 20px;
}

.site-nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.site-nav ul li a:hover {
  color: #007BFF;
}

/* Hero szakasz */
.hero {
  background-color: #e8f0fe;
  padding: 60px 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2em;
}

/* Szolgáltatások */
.services-overview {
  padding: 50px 0;
  background-color: #fff;
}

.services-overview h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2em;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.service-item {
  background-color: #f5f5f5;
  padding: 20px;
  margin: 10px;
  flex: 1 1 250px;
  border-radius: 8px;
  text-align: center;
}

.service-item h3 {
  margin-bottom: 15px;
}

.service-item p {
  font-size: 1em;
}

/* Kapcsolat CTA */
.contact-cta {
  background-color: #007BFF;
  color: white;
  padding: 40px 0;
  text-align: center;
}

.contact-cta h2 {
  font-size: 2em;
  margin-bottom: 15px;
}

.contact-cta p {
  margin-bottom: 25px;
  font-size: 1.2em;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: white;
  color: #007BFF;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

.btn:hover {
  background-color: #e0e0e0;
}

/* Lábléc */
.site-footer {
  background-color: #333;
  color: #ccc;
  padding: 20px 0;
  text-align: center;
}

.site-footer p {
  margin-bottom: 8px;
  font-size: 0.9em;
}

/* Reszponzív beállítások */
@media (max-width: 768px) {
  .site-nav ul {
    flex-direction: column;
    align-items: center;
  }
  .site-nav ul li {
    margin: 10px 0;
  }
  .services-list {
    flex-direction: column;
    align-items: center;
  }
}

