h1 {
  margin: 0;
}
p {
  margin: 0;
  margin-bottom: 32px;
  margin-top: 8px;
}
h2 {
  margin-top: 40px;
  margin-bottom: 12px;
  color: chocolate;
  font-family: ArchivoBlack-Regular;
  font-size: 24px;
}
h3 {
  font-family: "DroidSans", sans-serif;
}
.hero a {
  text-decoration: none;
  cursor: pointer;
  margin-left: 0;
}

.hero {
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  padding: 64px 16px;
  padding-right: 32px;
  padding-top: 0px;
}
.service-card {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.legal a {
  color: black;
}
.legal a:hover {
  color: black;
  text-decoration: none;
}

.feedback-wrapper {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.feedback {
  width: 100%;
  height: 100%;
  margin-top: 32px;
 
}
.projekt img {
  width: 100%;
  
  object-fit: cover;
  object-position: center;
  display: block;
}

.cta-section {
  padding: 100px 20px;
  padding-bottom: 30vh;
  background: #f9f9f9;

  text-align: center;
}

/* Inhalt */
.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

/* Überschrift */
.cta-section h2 {
  font-family: "ArchivoBlack-Regular", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: chocolate;
}

/* Button */
.cta-button {
  display: inline-block;
  padding: 16px 40px;
  background: chocolate;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.cta-button:hover {
  background: black;
  color: white;
  transform: translateY(-3px);
}
