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

body {
  font-family: "Work Sans", sans-serif;
  line-height: 1.7;
  color: #2b2b2b;
  background-color: #fffeeb;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero-content {
  max-width: 700px;
}

.logo-container {
  max-width: 450px;
  margin: 0 auto 2.5rem;
}

.logo-container img {
  width: 100%;
  height: auto;
  display: block;
}

.tagline {
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: #2b2b2b;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.subtitle {
  font-size: 1.25rem;
  color: #00965e;
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: #00965e;
  color: #fffeeb;
}

.btn-primary:hover {
  background-color: #007a4d;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 150, 94, 0.3);
}

.btn-secondary {
  background-color: #960038;
  color: #fffeeb;
}

.btn-secondary:hover {
  background-color: #7a002e;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(150, 0, 56, 0.3);
}

/* Section Styling */
section {
  padding: 5rem 2rem;
}

h2 {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 2.5rem;
  color: #00965e;
  margin-bottom: 3rem;
  text-align: center;
}

h3 {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #2b2b2b;
  margin-bottom: 0.75rem;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.about-card {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 150, 94, 0.15);
}

.emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background: rgba(255, 255, 255, 0.3);
}

.services-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: #2b2b2b;
}

.services-overview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.service-main-card {
  background: #fffeeb;
  padding: 3rem 2.5rem;
  border-radius: 20px;
  border: 3px solid #00965e;
  text-align: center;
}

.service-main-card .service-icon {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 1rem;
}

.service-main-card h3 {
  font-size: 2rem;
  color: #00965e;
  margin-bottom: 0.5rem;
}

.service-focus {
  font-size: 0.95rem;
  color: #960038;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.service-includes {
  list-style: none;
  text-align: left;
  max-width: 400px;
  margin: 0 auto;
}

.service-includes li {
  padding: 0.6rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1.05rem;
}

.service-includes li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00965e;
  font-weight: 700;
  font-size: 1.3rem;
}

.service-additional {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-small-card {
  background: #fffeeb;
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid rgba(43, 43, 43, 0.1);
  transition: all 0.3s ease;
}

.service-small-card:hover {
  border-color: #00965e;
  transform: translateY(-3px);
}

.service-icon-small {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.service-small-card h4 {
  font-family: "Oswald", sans-serif;
  font-size: 1.35rem;
  color: #2b2b2b;
  margin-bottom: 0.75rem;
}

.services-note {
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(0, 150, 94, 0.08);
  border-left: 4px solid #00965e;
  border-radius: 10px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.services-note p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
}

.services-note strong {
  color: #00965e;
}

/* Responsive für Services */
@media (max-width: 768px) {
  .service-main-card {
    padding: 2rem 1.5rem;
  }

  .service-main-card h3 {
    font-size: 1.6rem;
  }

  .service-includes {
    text-align: left;
  }
}

/* Target Section */
.target-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
}

.target-card {
  padding: 2.5rem;
  background: rgba(0, 150, 94, 0.05);
  border-left: 4px solid #00965e;
  border-radius: 10px;
}

.target-card h3 {
  color: #00965e;
  margin-bottom: 1rem;
}

/* Process Section */
.process-section {
  background: rgba(255, 255, 255, 0.3);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  font-family: "Oswald", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #960038;
  margin-bottom: 1rem;
}

/* Founder Section */
.founder-content {
  max-width: 800px;
  margin: 0 auto;
}

.founder-text p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

/* Contact Section */
.contact-section {
  background: rgba(0, 150, 94, 0.05);
}

.contact-intro {
  text-align: center;
  font-size: 1.15rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-methods {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2.5rem;
  background: #fffeeb;
  border-radius: 50px;
  text-decoration: none;
  color: #2b2b2b;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: #00965e;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 150, 94, 0.2);
}

.contact-icon {
  font-size: 1.75rem;
}

/* Footer */
footer {
  padding: 4rem 2rem 2rem;
  text-align: center;
}

.impressum-section {
  max-width: 700px;
  margin: 0 auto 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  font-size: 0.9rem;
  line-height: 1.8;
}

.impressum-section h3 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.impressum-section a {
  color: #00965e;
  text-decoration: none;
}

.impressum-section a:hover {
  text-decoration: underline;
}

.copyright {
  font-size: 0.9rem;
  color: #2b2b2b;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
  .tagline {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  section {
    padding: 3rem 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }
}
