.pastor2go-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.pastor2go-section h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #333;
}

.pastor2go-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.pastor2go-section li {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.pastor2go-section li:hover {
  transform: translateY(-5px);
}

.pastor2go-section .icon {
  width: 70px;
  height: 70px;
  margin-right: 30px;
  flex-shrink: 0;
}

.pastor2go-section .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pastor2go-section .content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #555;
}

.pastor2go-section .content p {
  font-size: 1rem;
  color: #777;
  line-height: 1.6;
  margin: 0;
  text-align: left;
}


.pastor2go-section .pastor2go-link {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.pastor2go-section .pastor2go-link a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border: 2px solid #fbb914;
  padding: 15px 30px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  background-color: #f9f9f9;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.pastor2go-section .pastor2go-link a:hover {
  background-color: #ffffff;
  border-color: #fbb914;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
  color: white;
}

.pastor2go-section .pastor2go-link .link-content {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #333;
}

.pastor2go-section .pastor2go-link .link-content img {
  width: 150px; /* Großes, modernes Logo */
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease-in-out;
}

.pastor2go-section .pastor2go-link .link-content span {
  font-size: 1.2rem;
  font-weight: 600;
  color: inherit;
  transition: color 0.3s ease-in-out;
}

.pastor2go-section .pastor2go-link a:hover .link-content img {
  transform: scale(1.1); /* Logo-Zoom-Effekt */
}

.pastor2go-section .pastor2go-link a:hover .link-content span {
  color: #fbb914;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  .pastor2go-section .pastor2go-link a {
      padding: 10px 20px;
      border-radius: 40px;
  }

  .pastor2go-section .pastor2go-link .link-content {
      flex-direction: column;
      gap: 10px;
  }

  .pastor2go-section .pastor2go-link .link-content img {
      width: 120px; /* Kleineres Logo für Mobilgeräte */
  }

  .pastor2go-section .pastor2go-link .link-content span {
      font-size: 1rem;
  }
}


/* Responsive Adjustments */
@media screen and (max-width: 768px) {
  .pastor2go-section ul {
    gap: 15px;
  }

  .pastor2go-section li {
    flex-direction: column;
    text-align: center;
  }

  .pastor2go-section .icon {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .pastor2go-section .content {
    text-align: center;
  }
}
