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

body {
  font-family: "New Amsterdam", sans-serif;
  background-color: #f4f4f4;
  color: #fdfdfd;
  line-height: 1.6;
  overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Sections */
section {
  background-color: #4b4b52;
  padding-top: 25px;
  padding-bottom: 50px;
}

/* Team Members */
.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 20px;
  object-fit: cover;
}

/* About Section */
.about-section {
  background: var(--scbg-color);
}

.about-section span {
  color: rgb(223, 6, 6);
}

.Aboutcon {
  width: 80%;
  margin: auto;
}

.section-title {
  text-align: center;
  margin-top: 50px;
  font-size: 36px;
  font-weight: bold;
  color: #eeeeee;
  position: relative;
  text-transform: uppercase;
  word-spacing: 10px;
}

.erstebuchstabe {
  color: rgb(235, 3, 3);
}

.team {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}

.team-member {
  background-color: rgb(37, 37, 37);
  padding: 20px;
  border-radius: 20px;
  box-shadow: 15px 15px 9px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 30%;
  transition: transform 0.3s;
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-member h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #ffffff;
}

.team-member p {
  font-size: 16px;
  color: #a8a8a8;
}

/* Responsive layout for smaller screens */
@media (max-width: 768px) {
  .team {
    flex-direction: column;
    align-items: center;
  }

  .team-member {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .section-title {
    font-size: 28px;
    margin-top: 30px;
  }
}

/* Company Info */
.company-info {
  background-color: #363636;
  padding: 20px;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.company-info h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #dddddd;
}

.company-info p {
  font-size: 16px;
  color: #cccccc;
  line-height: 1.8;
}

/* Button styling */
.btn-unten {
  display: flex;
  justify-content: center;
  margin: 50px 0;
}

.btn-Kontakt {
  color: white;
  border-radius: 10px;
  padding: 7px 13px;
  font-size: 20px;
  background-color: rgb(49, 49, 49);
  transition: 0.3s;
  border: 1px solid rgb(168, 65, 65);
  box-shadow: 4px 4px 30px black;
}

.btn-Kontakt:hover {
  transform: scale(1.1);
}

/* Description Section */
.descriptionfirma {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  gap: 100px;
  margin-top: 100px;
  background: #373738;
  font-size: 20px;
}

.UberDasUnternehmen {
  padding-left: 200px;
  width: 50%;
}

.imagecontentunternehmen {
  height: 400px;
  overflow: hidden;
  padding-right: 200px;
  width: 50%;
}

.imagecontentunternehmen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive layout for description section */
@media (max-width: 768px) {
  .descriptionfirma {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .UberDasUnternehmen,
  .imagecontentunternehmen {
    width: 100%;
    padding: 0;
  }
}

/* Footer Section */
.Unteresende {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 100px;
  gap: 100px;
  font-size: 20px;
}

.imagecontentZiele {
  width: 50%;
  overflow: hidden;
  padding-left: 200px;
  height: 400px;
}

.imagecontentZiele img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.UberUnsereZiele {
  padding-right: 200px;
  width: 50%;
}

/* Responsive layout for footer section */
@media (max-width: 768px) {
  .Unteresende {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .UberUnsereZiele,
  .imagecontentZiele {
    width: 100%;
    padding: 0;
  }
}

@media (max-width: 600px) {
  .company-info h2,
  .team-member h3 {
    font-size: 20px;
  }

  .company-info p,
  .team-member p {
    font-size: 14px;
  }

  .btn-Kontakt {
    font-size: 18px;
  }
}