.services {
  padding: 50px 0;
  background-color: #fff; /* Fehér háttér */
}

.services .container {
  width: 80%;
  margin: 0 auto;
}

.services .content {
  text-align: center;
}

.services h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.services p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 30px;
}

.services h2 {
  font-size: 2.5rem;
  margin-top: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Három oszlopos elrendezés */
  gap: 30px;
  margin-top: 40px;
}

.service-item {
  background-color: #f4f4f4;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.service-item:hover {
  transform: translateY(-10px); /* Hover effektus */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Hover árnyék erősítése */
}

.service-item h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.service-item p {
  font-size: 1rem;
  color: #555;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr); /* Két oszlop mobilon */
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr; /* Egy oszlop kisebb képernyőkön */
  }
}

a{
color: red;
text-decoration: none;
font-weight: bold;
}