@import url("reset.css");

@import url("https://fonts.googleapis.com/css?family=Inter:regular,500,600,700&display=swap");

/* ************COMMON************ */

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 90px;
  width: auto;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: #e1e4eb;
  background-color: #1a1a1a;
}

[class*="__container"] {
  max-width: 72.624rem;
  margin: 0 auto;
  padding: 0 0.938rem;
}

.button {
  font-weight: 600;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  transition: all 0.3s;
  color: #1a1a1a;
  background-color: #e1e4eb;
}

.button:hover {
  background-color: #4A90E2;
  color: #e1e4eb;
}

.title {
  font-size: 3.5rem;
  font-weight: 600;
  color: #e1e4eb;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}

/* ************HEADER************ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #1a1a1a;
  z-index: 1000;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.75rem;
  flex-wrap: wrap;
  max-width: 74.624rem;
}

.header__logo {
  position: relative;
  z-index: 2;
}

.header__navigation {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.menu__body {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.menu__link {
  font-weight: 600;
  position: relative;
  color: #e1e4eb;
}

.menu__link:hover {
  color: #4A90E2;
}

.actions-header {
  display: flex;
  align-items: center;
  gap: 0.624rem;
}

.icon-menu {
  display: none;
}

.actions-header__button {
  font-weight: 600;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid #4A90E2;
  border-radius: 30px;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
  color: #4A90E2;
}

.actions-header__button:hover {
  background-color: #4A90E2;
  color: #e1e4eb;
}

/* ****************PAGES**************** */
.page__main {
  padding-bottom: 160px;
}

/* *****************HOME**************** */

.main {
  background: url("../images/Home/Home-Hero.jpg") center / cover no-repeat;
  min-height: 100vh;
  position: relative;
}

.main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.main__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 19.188rem;
  position: relative;
  z-index: 1;
}

.main__caption {
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 500;
}

.main__title {
  font-size: 5.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.main__text {
  margin-bottom: 3.5rem;
  max-width: 33.375rem;
  line-height: 150%;
  letter-spacing: 0.02em;
}

.main__button {
  font-weight: 600;
  display: inline-block;
  padding: 1.25rem 3rem;
  border-radius: 30px;
  transition: all 0.3s;
  color: #fff;
  background-color: #4A90E2;
  letter-spacing: 0.02em;
  font-size: 1.375rem;
  line-height: 110%;
}

.outro_home {
  background: url("../images/Home/Home-Hero.jpg") center / cover no-repeat;
  position: relative;
}

.outro_home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

/* ************ABOUT**************** */

.main_about {
  background: url("../images/About/About-Hero.jpg") center / cover no-repeat;
}

.about__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
}

.about__image {
  position: relative;
  max-width: 552px;
  height: 614px;
}

.about__image img {
  border-radius: 16px;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__title {
  margin-bottom: 1.5rem;
}

.about__text {
  max-width: 30rem;
  letter-spacing: 0.02em;
  line-height: 150%;
  margin-bottom: 3.5rem;
}

.about__text p:not(:last-child) {
  margin-bottom: 2.5rem;
}

.outro_about {
  background: url("../images/About/About-Hero.jpg") center / cover no-repeat;
}

/* **************SERVICES**************** */

.main_services {
  background: url("../images/Services/Services-Hero.jpg") center / cover no-repeat;
}

.services {
  background-color: #262626;
}

.services__container {
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
}

.services__title {
  text-align: center;
  margin-bottom: 5rem;
}

.services__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  justify-content: center;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.item-services {
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: row;
  align-items: start;
  width: 100%;
  gap: 40px;
}

.item-services:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.item-services__top {
  flex-shrink: 0;
}

.item-services__content {
  display: flex;
  flex-direction: column;
  align-items: start;
  text-align: left;
  flex: 1;
}

.item-services__image {
  margin-bottom: 0;
  max-width: 450px;
  height: 500px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.item-services__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.item-services__image:hover img {
  transform: scale(1.05);
}

.item-services__title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #ffffff;
  position: relative;
  padding-bottom: 15px;
}

.item-services__title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.1) 100%);
}

.item-services__text {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  flex-grow: 1;
}

.item-services__text p {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
}

.item-services__text p:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ffffff;
}

.item-services__button {
  font-size: 18px;
  padding: 15px 30px;
  border-radius: 30px;
  background: #4A90E2;
  color: #ffffff;
  transition: all 0.3s ease;
}

.item-services__button:hover {
  background: #357abd;
  transform: translateY(-2px);
}

.outro_services {
  background: url("../images/Services/Services-Hero.jpg") center / cover no-repeat;
  position: relative;
}

.outro_services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

/* ************TESTIMONIAL**************** */

.testimonial__container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
}

.testiomonial__caption {
  margin-bottom: 4rem;
  font-weight: 600;
  text-transform: uppercase;
}

.testimonial__title {
  margin-bottom: 4rem;
  font-size: 2rem;
  max-width: 40.75rem;
  line-height: 136%;
  font-weight: 500;
}

.item-testimonial__image {
  max-width: 64px;
  margin: 0 auto;
  margin-bottom: 1.063rem;
  height: 64px;
}

.item-testimonial__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.item-testimonial__title {
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.item-testimonial__caption {
  font-size: 0.938rem;
}

/* ****************OUTRO**************** */

.outro__container {
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.outro__title {
  margin-bottom: 1.25rem;
}

.outro__text {
  max-width: 33.625rem;
  line-height: 150%;
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}

.outro__button {
  padding: 1.25rem 3rem;
}

/* ****************FOOTER**************** */

.footer {
  background-color: #1a1a1a;
  padding: 60px 0 20px;
  color: #e1e4eb;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer__section h3 {
  color: #e1e4eb;
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer__section ul {
  list-style: none;
  padding: 0;
}

.footer__section ul li {
  margin-bottom: 10px;
}

.footer__section ul li a {
  color: #e1e4eb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__section ul li a:hover {
  color: #4A90E2;
}

.footer__bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.footer__logo img {
  max-width: 200px;
  height: auto;
}

@media (max-width: 768px) {
  .footer__content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer__logo {
    margin-bottom: 20px;
  }
  
  .footer__logo img {
    max-width: 150px;
  }
}

/* ****************ABOUT PAGE**************** */
.main__text_pages {
  max-width: 37.5rem;
}

.main__container_pages {
  padding-top: 300px;
}

.main_pages {
  min-height: 676px !important;
}

/* ****************SERVICES PAGE**************** */
.services-page__container {
  padding-top: 160px;
}

.services-page__item {
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  margin-bottom: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.services-page__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.services-page__column {
  display: flex;
  gap: 40px;
  align-items: center;
}

.services-page__content {
  flex: 1;
}

.services-page__title {
  font-size: 32px;
  margin-bottom: 25px;
  color: #ffffff;
  position: relative;
  padding-bottom: 15px;
}

.services-page__title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.1) 100%);
}

.services-page__text {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.services-page__text p {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
}

.services-page__text p:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ffffff;
}

.services-page__img {
  flex: 1;
  max-width: 500px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.services-page__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.services-page__img:hover img {
  transform: scale(1.05);
}

@media (max-width: 991.98px) {
  .services-page__column {
    flex-direction: column;
  }
  
  .services-page__img {
    max-width: 100%;
  }
  
  .services-page__content {
    text-align: center;
  }
  
  .services-page__title:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .services-page__text p {
    text-align: left;
  }
}

/* ****************CONTACT PAGE****************/

.main_contact {
  background: url("../images/Contact/Contact-Hero.jpg") center / cover no-repeat;
}

.contact__container {
  display: flex;
  justify-content: space-between;
  gap: 109px;
  padding-top: 140px;
  padding-bottom: 140px;
}

.contact__title {
  margin-bottom: 48px;
  font-weight: 600;
  line-height: 110%;
  font-size: 40px;
}

.connect-contact {
  display: flex;
  flex-direction: column;
  align-items: start;
  row-gap: 32px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e1e4eb;
}

.connect-contact__item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.connect-contant__type {
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 110%;
  text-transform: uppercase;
}

.connect-contact__label {
  font-size: 22px;
  line-height: 150%;
  letter-spacing: 0.02em;
}

.contact__links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact__text {
  max-width: 545px;
  font-size: 18px;
  line-height: 150%;
}

.contact__text p:not(:last-child) {
  margin-bottom: 15px;
}

iframe {
  width: 100vw;
  height: 482px;
  filter: grayscale(100%);
}

/* **************REVIEWS PAGE**************** */
.reviews__container {
  padding-top: 160px;
  padding-bottom: 160px;
}

.reviews__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 96px;
}

.reviews__column {
  border: 1px solid #e1e4eb;
  border-radius: 8px;
}

.reviews__item {
  padding-top: 48px;
  padding-bottom: 56px;
  padding-right: 32px;
  padding-left: 32px;
}

.item-reviews {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.item-reviews__img {
  max-width: 46px;
  height: 36px;
  margin: 0 auto;
  margin-bottom: 46px;
}

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

.item-reviews__text {
  margin-bottom: 40px;
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 150%;
}

.item-reviews__author {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

.item-reviews__geo {
  font-size: 14px;
  letter-spacing: 0.002em;
}

/* ******************PRICING PAGE******************** */
.pricing__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pricing__caption {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 4%;
}

.pricing__title {
  font-weight: 600;
  font-size: 72px;
  margin-bottom: 24px;
}

.pricing__text {
  font-size: 22px;
  letter-spacing: 2%;
  margin-bottom: 88px;
}

.pricing__row {
  display: flex;
  align-items: start;
  gap: 24px;
}

.pricing__column {
  border: 2px solid #e1e4eb;
  border-radius: 8px;
}

.pricing__item {
  padding: 40px;
  padding-bottom: 48px;
}

.item-pricing__info {
  padding-bottom: 32px;
  border-bottom: 1px solid #e1e4eb;
  margin-bottom: 32px;
}

.item-pricing__label {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1%;
  margin-bottom: 16px;
}

.item-pricing__cost {
  font-size: 72px;
  font-weight: 600;
  margin-bottom: 16px;
}

.item-pricing__list {
  margin-bottom: 64px;
}

.item-pricing__item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.item-pricing__item::before {
  content: "";
  background: url("../img/pricing/check.svg") 0 0 no-repeat;
  width: 16px;
  height: 18px;
}

.item-pricing__item:not(:last-child) {
  margin-bottom: 12px;
}

.item-pricing__button {
  display: inline-block;
  font-size: 22px;
  letter-spacing: 2%;
  font-weight: 600;
  color: #fff;
  padding: 20px 82px;
  background-color: #4A90E2;
  border-radius: 64px;
}

.team {
  background-color: #e1e4eb;
}

.team__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.team__title {
  text-align: center;
  margin-bottom: 96px;
  max-width: 483px;
}

.team__row {
  display: grid;
  column-gap: 24px;
  row-gap: 96px;
  grid-template-columns: repeat(3, 1fr);
}

.team__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.item-team__img {
  max-width: 360px;
  height: 363px;
  margin-bottom: 40px;
}

.item-team__img img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.item-team__name {
  max-width: 186px;
  font-size: 32px;
  font-weight: 600;
  line-height: 120%;
  text-align: center;
  margin-bottom: 12px;
}

.item-team__role {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 26px;
  letter-spacing: 2%;
}

.item-team__role span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.item-team__role span::after {
  content: "";
  background: url("../img/team/icons/star.svg") 0 0 no-repeat;
  width: 12px;
  height: 12px;
}

.item-team__text {
  font-size: 16px;
  text-align: center;
  letter-spacing: 2%;
  line-height: 150%;
  max-width: 328px;
  margin-bottom: 20px;
}

.item-team__icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* *************FAQ PAGE************** */
.faqs__container {
  padding-top: 140px;
  padding-bottom: 140px;
}

.faqs__title {
  text-align: center;
  margin-bottom: 80px;
}

.spollers-faq__item {
  width: 100%;
}

.spollers-faq__item:not(:last-child) {
  margin-bottom: 24px;
}

.spollers-faq__button {
  display: inline-block;
  border: 2px solid #e1e4eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-radius: 8px;
}

.spollers-faq__button span {
  padding-left: 40px;
  padding-top: 32px;
  padding-bottom: 32px;
  font-weight: 600;
}

.spollers-faq__button img {
  padding-right: 34.5px;
}

.spollers-faq__text {
  max-height: 0;
  overflow: hidden;
  width: 100%;
  display: block;
}

.spollers-faq__item.active .spollers-faq__text {
  max-height: 1000px;
  max-height: calc(1000px + 16px);
}

.spollers-faq__item.active .spollers-faq__button {
  border-bottom: none;
  border-radius: 8px 8px 0px 0px;
}

.spollers-faq__item.active .spollers-faq__button span {
  padding-bottom: 32px;
}

.spollers-faq__item.active .spollers-faq__button img {
  transform: translate(-34px, 0px) rotate(180deg);
}

.spollers-faq__inner {
  padding-top: 20px;
  padding-left: 40px;
  border: 2px solid #e1e4eb;
  border-radius: 0px 0px 8px 8px;
  line-height: 150%;
  padding-bottom: 20px;
  border-top: none;
  padding-right: 100px;
}

/* ****************TEAM PAGE**************** */
.director__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  align-items: center;
  gap: 96px;
}

.director__title {
  margin-bottom: 16px;
}

.director__role {
  font-size: 22px;
  letter-spacing: 2%;
  margin-bottom: 40px;
}

.director__text {
  letter-spacing: 2%;
  line-height: 150%;
  max-width: 480px;
}

.director__text p:not(:last-child) {
  margin-bottom: 20px;
}

.director__img {
  max-width: 552px;
  height: 614px;
}

.director__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* ****************GALLERY**************** */
.gallery__container {
  padding-bottom: 140px;
  padding-top: 140px;
}

.gallery__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 96px;
  margin-bottom: 96px;
  justify-items: center;
}

.gallery__item {
  max-width: 360px;
  height: 407px;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.gallery__paggination {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  gap: 42px;
}

.gallery__paggination button:first-child {
  transform: translate(0px, 5px);
}

.gallery__paggination button:last-child {
  transform: rotate(-180deg) translate(0px, 5px);
}

.gallery_active {
  color: #fff;
  padding: 10px 15px;
  background-color: #4A90E2;
  border-radius: 100px;
  display: inline-block;
}

/* ****************RESOURCES**************** */
.resources__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 96px;
  justify-items: center;
}

.resources__img {
  max-width: 360px;
  height: 330px;
  margin-bottom: 32px;
}

.resources__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.resources__title {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 12px;
}

.resources__text {
  letter-spacing: 2%;
  line-height: 150%;
  max-width: 243px;
  margin-bottom: 32px;
}

.resources__button {
  background-color: #fff;
  color: #4A90E2;
  font-weight: 600;
  letter-spacing: 2%;
  border: 2px solid #4A90E2;
  border-radius: 64px;
}

/* ****************ADAPTIVE**************** */

@media (max-width: 992px) {
  .item-services {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    gap: 30px;
  }
  
  .item-services__content {
    align-items: center;
    text-align: center;
  }
  
  .item-services__title:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .item-services__text p {
    text-align: left;
  }
  
  .item-services__image {
    max-width: 100%;
    height: 400px;
  }
}

@media (min-width: 47.999rem) {
  .menu__list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
}

@media (max-width: 995px) {
  .item-pricing__button {
    font-size: 19px;
  }
}

@media (max-width: 62.6875rem) {
  .resources__container {
    padding-top: 70px;
    padding-bottom: 70px;
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__paggination {
    gap: 27px;
  }

  .gallery__row {
    grid-template-columns: repeat(2, 1fr);
  }

  .team__row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }

  .director__container {
    flex-direction: column;
    padding-top: 70px;
    padding-bottom: 70px;
    gap: 10px;
    text-align: center;
  }

  .item-pricing {
    padding: 20px;
    padding-bottom: 30px;
  }

  .pricing__title {
    font-size: 39px;
  }

  .pricing__text {
    margin-bottom: 25px;
  }

  .item-pricing__button {
    padding: 16px 42px;
  }

  .footer__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
  }

  .footer__logo {
    margin-bottom: 1rem;
  }

  .services-page__column {
    gap: 30px;
    font-size: 15px;
  }

  .services-page__title {
    font-size: 29px;
  }

  .reviews__row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
    column-gap: 10px;
  }

  .reviews__item {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-top: 20px;
    display: inline-block;
  }

  .item-reviews__text {
    font-size: 16px;
  }

  .item-reviews__author {
    font-size: 16px;
  }
}

@media (max-width: 47.999rem) {
  .spollers-faq__item.active .spollers-faq__button img {
    transform: translate(-10px, -10px) rotate(180deg);
  }

  .spollers-faq__button span {
    padding-top: 15px;
    padding-left: 10px;
    padding-bottom: 15px;
    font-weight: 600;
    font-size: 14px;
  }

  .spollers-faq__button img {
    padding-right: 10px;
  }

  .spollers-faq__inner {
    font-size: 16px;
    padding-left: 10px;
    line-height: 130%;
  }

  .pricing__container {
    text-align: center;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .pricing__row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .item-pricing__button {
    font-size: 17px;
    padding: 15px 32px;
  }

  .reviews__container {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .icon-menu {
    display: block;
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 1.875rem;
    flex: 0 0 1.875rem;
    width: 1.875rem;
    height: 1.125rem;
    cursor: pointer;
    z-index: 5;
  }

  .icon-menu span,
  .icon-menu::before,
  .icon-menu::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease 0s;
  }

  .icon-menu::before {
    top: 0;
  }

  .icon-menu::after {
    bottom: 0;
  }

  .contact__container {
    flex-direction: column;
    padding-top: 80px;
    gap: 50px;
    padding-bottom: 80px;
  }

  .icon-menu span {
    top: calc(50% - 0.0625rem);
  }

  .menu-open .icon-menu span {
    width: 0;
  }

  .menu-open .icon-menu::before {
    top: calc(50% - 0.0625rem);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .menu-open .icon-menu::after {
    bottom: calc(50% - 0.0625rem);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .menu__body {
    background-color: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    padding: 9.375rem 0.938rem 1.875rem 0.938rem;
    overflow: auto;
    flex-direction: column;
    row-gap: 5rem;
  }

  .menu__body::before {
    content: "";
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    min-height: 5.75rem;
    background-color: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
  }

  .menu-open .menu__body {
    left: 0;
  }

  .menu-open .menu__body::before {
    left: 0;
  }

  .menu__item {
    text-align: center;
  }

  .menu__item:not(:last-child) {
    margin-bottom: 1.563rem;
  }

  .menu__link {
    font-size: 2rem;
    color: #ffffff;
  }

  .menu__link:hover {
    color: #4A90E2;
  }

  .actions-header__button {
    padding: 0.75rem;
  }

  .main__container {
    padding-top: 12.5rem;
  }

  .main__container_pages {
    padding-top: 290px;
  }

  .main__title {
    font-size: 3rem;
  }

  .title {
    font-size: 2rem;
  }

  .about__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .about__container {
    flex-direction: column;
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
    gap: 4rem;
  }

  .services__container {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }

  .testimonial__title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .testiomonial__caption {
    margin-bottom: 2rem;
  }

  .outro__container {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }

  .logo {
    font-size: 1rem;
  }

  .services-page__column {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 20px;
    gap: 4rem;
  }

  .logo img {
    height: 70px;
  }
}

@media (max-width: 61.936rem) {
  .footer__container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    row-gap: 0.938rem;
  }

  .logo {
    font-size: 2rem;
  }
}

@media (max-width: 530px) {
  .reviews__row {
    grid-template-columns: 1fr;
  }

  .team__row {
    grid-template-columns: 1fr;
  }

  .gallery__row {
    grid-template-columns: 1fr;
  }

  .resources__container {
    grid-template-columns: 1fr;
  }
}

/* ****************CONTACT FORM**************** */
.contact-form {
    background-color: #1a1a1a;
    padding: 4rem 0;
}

.contact-form__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.contact-form__form {
    background: #262626;
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-form__field {
    margin-bottom: 1.5rem;
}

.contact-form__field label {
    display: block;
    margin-bottom: 0.5rem;
    color: #e1e4eb;
    font-weight: 500;
    font-size: 1rem;
}

.contact-form__field input,
.contact-form__field textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #e1e4eb;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
    outline: none;
    border-color: #4A90E2;
    background: rgba(255, 255, 255, 0.08);
}

.contact-form__services {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form__section-title {
    color: #e1e4eb;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.contact-form__service-group {
    margin-top: 2rem;
}

.contact-form__service-title {
    color: #e1e4eb;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.contact-form__checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form__checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #e1e4eb;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.contact-form__checkbox:hover {
    background: rgba(255, 255, 255, 0.05);
}

.contact-form__checkbox input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    accent-color: #4A90E2;
    cursor: pointer;
}

.contact-form__button {
    background: #4A90E2;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 2rem;
}

.contact-form__button:hover {
    background: #357abd;
    transform: translateY(-2px);
}

.contact-form__error {
    color: #ff4444;
    font-size: 14px;
    margin-top: 8px;
    padding: 8px 12px;
    background-color: rgba(255, 68, 68, 0.1);
    border-radius: 4px;
    border: 1px solid rgba(255, 68, 68, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-form__error::before {
    content: "⚠️";
    font-size: 16px;
}

.contact-form__field {
    position: relative;
    margin-bottom: 20px;
}

.contact-form__field input.error,
.contact-form__field textarea.error {
    border-color: #ff4444;
    background-color: rgba(255, 68, 68, 0.05);
}

.contact-form__services .contact-form__error {
    margin-top: 15px;
    background-color: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.2);
}

.contact-form__error.visible {
    display: block;
}

/* Mobile Styles für Kontaktformular */
@media (max-width: 768px) {
    .contact-form {
        padding: 1rem 0;
        background-color: #1a1a1a;
    }

    .contact-form__container {
        padding: 0 1rem;
    }

    .contact-form__form {
        padding: 1.5rem;
        background: #262626;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .contact-form__row {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .contact-form__field {
        margin-bottom: 1rem;
        width: 100%;
    }

    .contact-form__field label {
        color: #e1e4eb;
        font-size: 1rem;
        font-weight: 500;
        margin-bottom: 0.5rem;
        display: block;
    }

    .contact-form__field input,
    .contact-form__field textarea {
        width: 100%;
        padding: 0.875rem;
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.05);
        color: #e1e4eb;
        font-size: 16px !important;
        -webkit-appearance: none;
        appearance: none;
        margin: 0;
        box-sizing: border-box;
    }

    .contact-form__services {
        background: rgba(255, 255, 255, 0.05);
        padding: 1.25rem;
        border-radius: 10px;
        margin: 1.5rem 0;
        border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .contact-form__section-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .contact-form__service-group {
        margin-top: 1.5rem;
    }

    .contact-form__service-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .contact-form__checkbox-group {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .contact-form__checkbox {
        min-height: 44px;
        padding: 0.75rem;
        display: flex;
        align-items: center;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 8px;
        transition: background-color 0.3s ease;
    }

    .contact-form__checkbox:hover {
        background: rgba(255, 255, 255, 0.05);
    }

    .contact-form__checkbox input[type="checkbox"] {
        width: 22px;
        height: 22px;
        margin-right: 12px;
        border-radius: 4px;
        -webkit-appearance: none;
        appearance: none;
        background: rgba(255, 255, 255, 0.05);
        border: 2px solid rgba(255, 255, 255, 0.3);
        position: relative;
        cursor: pointer;
    }

    .contact-form__checkbox input[type="checkbox"]:checked {
        background: #4A90E2;
        border-color: #4A90E2;
    }

    .contact-form__checkbox input[type="checkbox"]:checked:after {
        content: '';
        position: absolute;
        left: 6px;
        top: 2px;
        width: 6px;
        height: 12px;
        border: solid white;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }

    .contact-form__checkbox span {
        font-size: 1rem;
        color: #e1e4eb;
    }

    .contact-form__button {
        width: 100%;
        padding: 1rem;
        border-radius: 25px;
        background: #4A90E2;
        color: #ffffff;
        font-size: 1rem;
        font-weight: 600;
        -webkit-appearance: none;
        appearance: none;
        margin-top: 1.5rem;
        min-height: 44px;
        border: none;
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(74, 144, 226, 0.3);
    }

    .contact-form__button:active {
        background: #357abd;
        transform: translateY(1px);
    }

    .contact-form__error {
        color: #ff4d4d;
        font-size: 0.875rem;
        margin-top: 0.5rem;
        padding: 0.5rem;
        background: rgba(255, 77, 77, 0.1);
        border-radius: 4px;
    }
}

/* Kleine Mobilgeräte */
@media (max-width: 480px) {
    .contact-form__form {
        padding: 1.25rem;
    }

    .contact-form__services {
        padding: 1rem;
    }

    .contact-form__section-title {
        font-size: 1.1rem;
    }

    .contact-form__service-title {
        font-size: 0.95rem;
    }

    .contact-form__checkbox {
        padding: 0.625rem;
    }

    .contact-form__checkbox span {
        font-size: 0.95rem;
    }
}

/* Landscape Mode */
@media (max-height: 480px) and (orientation: landscape) {
    .contact-form {
        padding: 0.5rem 0;
    }

    .contact-form__form {
        padding: 1rem;
    }

    .contact-form__field {
        margin-bottom: 0.75rem;
    }

    .contact-form__services {
        margin: 1rem 0;
    }

    .contact-form__service-group {
        margin-top: 1rem;
    }
}

/* Styles für das Modal/Popup */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal.active {
    display: flex;
}

.modal__content {
    background: #1E1E1E;
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal__icon {
    margin-bottom: 20px;
}

.modal__icon img {
    width: 60px;
    height: 60px;
}

.modal__title {
    font-size: 24px;
    color: #4A90E2;
    margin-bottom: 15px;
}

.modal__text {
    color: #e1e4eb;
    margin-bottom: 25px;
    line-height: 1.5;
}

.modal__button {
    background: #4A90E2;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.modal__button:hover {
    background: #357abd;
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .modal__content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .modal__title {
        font-size: 1.25rem;
    }
    
    .modal__text {
        font-size: 0.95rem;
    }
}

/* Preise & Pakete Styles */
.prices-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 15px;
}

/* Tabs Navigation */
.price-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.tab-button {
    padding: 12px 24px;
    border: none;
    background: rgba(74, 144, 226, 0.1);
    color: #4A90E2;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-button:hover {
    background: rgba(74, 144, 226, 0.2);
}

.tab-button.active {
    background: #4A90E2;
    color: white;
}

.category {
    display: block;
    margin-bottom: 100px;
    scroll-margin-top: 120px;
    padding-top: 20px;
}

.category-header {
    text-align: center;
    margin-bottom: 40px;
}

.category-header h2 {
    font-size: 2.5rem;
    color: #4A90E2;
    margin-bottom: 20px;
}

/* Paket Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 0 auto;
    max-width: 1200px;
}

.package-card {
    background: #1E1E1E;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.package-card.featured {
    border: 2px solid #4A90E2;
    position: relative;
}

.package-card h3 {
    font-size: 24px;
    color: #4A90E2;
    margin-bottom: 20px;
    font-weight: 600;
}

.package-card .price {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 700;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.services-list li {
    padding: 12px 0;
    color: #e1e4eb;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.services-list li:last-child {
    border-bottom: none;
}

.package-card .button {
    display: inline-block;
    padding: 12px 30px;
    background: #4A90E2;
    color: #ffffff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.package-card .button:hover {
    background: #357abd;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .package-card {
        padding: 30px;
    }

    .package-card h3 {
        font-size: 22px;
    }

    .package-card .price {
        font-size: 32px;
    }
}

.individual-prices {
    background: #1E1E1E;
    border-radius: 10px;
    padding: 30px;
}

.price-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.price-row:last-child {
    margin-bottom: 0;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
}

.price-item span {
    color: #fff;
}

.price-item .price {
    color: #4A90E2;
    font-weight: 600;
}

.individual-prices__title {
    text-align: center;
    color: #4A90E2;
    font-size: 1.5rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(74, 144, 226, 0.2);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .prices-container {
        padding: 20px 15px;
    }

    .price-tabs {
        gap: 10px;
        margin-bottom: 40px;
    }

    .tab-button {
        padding: 10px 20px;
        font-size: 14px;
    }

    .category {
        margin-bottom: 60px;
        scroll-margin-top: 80px;
    }

    .category-header h2 {
        font-size: 2rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .price-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .tab-button {
        width: 100%;
        text-align: center;
    }

    .category-header h2 {
        font-size: 1.75rem;
    }

    .package-card {
        padding: 20px;
    }

    .package-card .price {
        font-size: 1.75rem;
    }
}

/* Bottom Hero Styles */
.bottom-hero {
    position: relative;
    padding: 120px 0;
    background: url("../images/Home/Home-Hero.jpg") center / cover no-repeat;
    color: #fff;
    text-align: center;
}

.bottom-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.bottom-hero__container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.bottom-hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.bottom-hero__title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.bottom-hero__text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.bottom-hero__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.bottom-hero__buttons .button {
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.bottom-hero__buttons .button_primary {
    background-color: #4A90E2;
    color: #fff;
}

.bottom-hero__buttons .button_secondary {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.bottom-hero__buttons .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .bottom-hero {
        padding: 80px 0;
    }

    .bottom-hero__title {
        font-size: 2rem;
    }

    .bottom-hero__text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .bottom-hero {
        padding: 40px 0;
    }

    .bottom-hero__title {
        font-size: 1.75rem;
    }

    .bottom-hero__buttons {
        flex-direction: column;
    }

    .bottom-hero__buttons .button {
        width: 100%;
    }
}

/* Kategorie Navigation */
.category-nav {
    margin: -40px 0 60px;
    position: relative;
    z-index: 2;
}

.category-nav__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-nav-link {
    text-decoration: none;
    color: #fff;
}

.category-nav__item {
    background: #1E1E1E;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.category-nav__item:hover {
    transform: translateY(-5px);
    background: #262626;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.category-nav__item h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #4A90E2;
}

.category-nav__item p {
    font-size: 1.1rem;
    color: #e1e4eb;
}

/* Responsive Styles für Kategorie Navigation */
@media (max-width: 768px) {
    .category-nav {
        margin: -20px 0 40px;
    }

    .category-nav__container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .category-nav__item {
        padding: 20px;
    }

    .category-nav__item h3 {
        font-size: 1.1rem;
    }

    .category-nav__item p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .category-nav__container {
        grid-template-columns: 1fr;
    }

    .category-nav__item {
        padding: 15px;
    }
}

.contact-form__field select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 20px;
    padding-right: 48px;
}

.contact-form__field select:focus {
    outline: none;
    border-color: #4A90E2;
    background-color: rgba(255, 255, 255, 0.1);
}

.contact-form__field select option {
    background-color: #1a1a1a;
    color: #fff;
    padding: 12px;
}

.contact-form__field select:invalid {
    color: rgba(255, 255, 255, 0.5);
}

html {
    scroll-behavior: smooth;
}

.category {
    scroll-margin-top: 120px;
}

.category-nav-link {
    text-decoration: none;
    color: inherit;
}

.category-nav__item {
    background: #1E1E1E;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.category-nav__item:hover {
    transform: translateY(-5px);
    background: #262626;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.category-nav__item h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #4A90E2;
}

.category-nav__item p {
    font-size: 1.1rem;
    color: #e1e4eb;
}

@media (max-width: 768px) {
    .category {
        scroll-margin-top: 80px;
    }
}

/* Impressum Styles */
.impressum {
    padding: 60px 0;
    background-color: #1a1a1a;
}

.impressum__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.impressum__section {
    margin-bottom: 40px;
    color: #e1e4eb;
}

.impressum__section:last-child {
    margin-bottom: 0;
}

.impressum__section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #4A90E2;
}

.impressum__section h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: #e1e4eb;
}

.impressum__section p {
    margin-bottom: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .impressum {
        padding: 40px 0;
    }

    .impressum__section h2 {
        font-size: 1.5rem;
    }

    .impressum__section h3 {
        font-size: 1.2rem;
    }
}

/* AGB Styles */
.agb {
    padding: 60px 0;
    background-color: #1a1a1a;
}

.agb__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.agb__section {
    margin-bottom: 40px;
    color: #e1e4eb;
}

.agb__section:last-child {
    margin-bottom: 0;
}

.agb__section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #4A90E2;
}

.agb__section p {
    margin-bottom: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .agb {
        padding: 40px 0;
    }

    .agb__section h2 {
        font-size: 1.5rem;
    }
}

.agb__update {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(74, 144, 226, 0.2);
    font-style: italic;
    color: #888;
    text-align: center;
}

/* Datenschutz Styles */
.datenschutz {
    padding: 60px 0;
    background-color: #1a1a1a;
}

.datenschutz__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.datenschutz__section {
    margin-bottom: 40px;
    color: #fff;
}

.datenschutz__section h2 {
    color: #4A90E2;
    font-size: 2rem;
    margin-bottom: 20px;
}

.datenschutz__section h3 {
    color: #4A90E2;
    font-size: 1.5rem;
    margin: 25px 0 15px;
}

.datenschutz__section h4 {
    color: #4A90E2;
    font-size: 1.2rem;
    margin: 20px 0 10px;
}

.datenschutz__section p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.datenschutz__section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.datenschutz__section ul li {
    margin-bottom: 8px;
}

.datenschutz__update {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(74, 144, 226, 0.2);
    font-style: italic;
    color: #888;
    text-align: center;
}

@media (max-width: 768px) {
    .datenschutz {
        padding: 40px 0;
    }

    .datenschutz__section h2 {
        font-size: 1.8rem;
    }

    .datenschutz__section h3 {
        font-size: 1.3rem;
    }

    .datenschutz__section h4 {
        font-size: 1.1rem;
    }
}

/* Hero Bottom Section */
.hero-bottom {
    position: relative;
    padding: 120px 0;
    background: url("../images/Home/Home-Hero.jpg") center / cover no-repeat;
    color: #fff;
    text-align: center;
}

.hero-bottom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-bottom__container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.hero-bottom__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-bottom__title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.hero-bottom__text {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #fff;
}

.hero-bottom__button {
    margin-top: 30px;
}

.hero-bottom__button .button_primary {
    padding: 15px 40px;
    font-size: 18px;
    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-bottom__button .button_primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-bottom {
        padding: 80px 0;
    }

    .hero-bottom__title {
        font-size: 36px;
    }

    .hero-bottom__text {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero-bottom {
        padding: 40px 0;
    }

    .hero-bottom__title {
        font-size: 1.75rem;
    }

    .hero-bottom__buttons {
        flex-direction: column;
    }

    .hero-bottom__buttons .button {
        width: 100%;
    }
}

/* Kategorie Navigation */
.category-nav {
    margin: -40px 0 60px;
    position: relative;
    z-index: 2;
}

.category-nav__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-nav-link {
    text-decoration: none;
    color: #fff;
}

.category-nav__item {
    background: #1E1E1E;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.category-nav__item:hover {
    transform: translateY(-5px);
    background: #262626;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.category-nav__item h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #4A90E2;
}

.category-nav__item p {
    font-size: 1.1rem;
    color: #e1e4eb;
}

/* Responsive Styles für Kategorie Navigation */
@media (max-width: 768px) {
    .category-nav {
        margin: -20px 0 40px;
    }

    .category-nav__container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .category-nav__item {
        padding: 20px;
    }

    .category-nav__item h3 {
        font-size: 1.1rem;
    }

    .category-nav__item p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .category-nav__container {
        grid-template-columns: 1fr;
    }

    .category-nav__item {
        padding: 15px;
    }
}

.contact-form__field select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 20px;
    padding-right: 48px;
}

.contact-form__field select:focus {
    outline: none;
    border-color: #4A90E2;
    background-color: rgba(255, 255, 255, 0.1);
}

.contact-form__field select option {
    background-color: #1a1a1a;
    color: #fff;
    padding: 12px;
}

.contact-form__field select:invalid {
    color: rgba(255, 255, 255, 0.5);
}

html {
    scroll-behavior: smooth;
}

.category {
    scroll-margin-top: 120px;
}

.category-nav-link {
    text-decoration: none;
    color: inherit;
}

.category-nav__item {
    background: #1E1E1E;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.category-nav__item:hover {
    transform: translateY(-5px);
    background: #262626;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.category-nav__item h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #4A90E2;
}

.category-nav__item p {
    font-size: 1.1rem;
    color: #e1e4eb;
}

@media (max-width: 768px) {
    .category {
        scroll-margin-top: 80px;
    }
}

/* Impressum Styles */
.impressum {
    padding: 60px 0;
    background-color: #1a1a1a;
}

.impressum__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.impressum__section {
    margin-bottom: 40px;
    color: #e1e4eb;
}

.impressum__section:last-child {
    margin-bottom: 0;
}

.impressum__section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #4A90E2;
}

.impressum__section h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: #e1e4eb;
}

.impressum__section p {
    margin-bottom: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .impressum {
        padding: 40px 0;
    }

    .impressum__section h2 {
        font-size: 1.5rem;
    }

    .impressum__section h3 {
        font-size: 1.2rem;
    }
}

/* AGB Styles */
.agb {
    padding: 60px 0;
    background-color: #1a1a1a;
}

.agb__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.agb__section {
    margin-bottom: 40px;
    color: #e1e4eb;
}

.agb__section:last-child {
    margin-bottom: 0;
}

.agb__section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #4A90E2;
}

.agb__section p {
    margin-bottom: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .agb {
        padding: 40px 0;
    }

    .agb__section h2 {
        font-size: 1.5rem;
    }
}

.agb__update {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(74, 144, 226, 0.2);
    font-style: italic;
    color: #888;
    text-align: center;
}

/* Datenschutz Styles */
.datenschutz {
    padding: 60px 0;
    background-color: #1a1a1a;
}

.datenschutz__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.datenschutz__section {
    margin-bottom: 40px;
    color: #fff;
}

.datenschutz__section h2 {
    color: #4A90E2;
    font-size: 2rem;
    margin-bottom: 20px;
}

.datenschutz__section h3 {
    color: #4A90E2;
    font-size: 1.5rem;
    margin: 25px 0 15px;
}

.datenschutz__section h4 {
    color: #4A90E2;
    font-size: 1.2rem;
    margin: 20px 0 10px;
}

.datenschutz__section p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.datenschutz__section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.datenschutz__section ul li {
    margin-bottom: 8px;
}

.datenschutz__update {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(74, 144, 226, 0.2);
    font-style: italic;
    color: #888;
    text-align: center;
}

@media (max-width: 768px) {
    .datenschutz {
        padding: 40px 0;
    }

    .datenschutz__section h2 {
        font-size: 1.8rem;
    }

    .datenschutz__section h3 {
        font-size: 1.3rem;
    }

    .datenschutz__section h4 {
        font-size: 1.1rem;
    }
}

.contact-form__message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    display: none;
}

.contact-form__message.error {
    background-color: rgba(255, 0, 0, 0.1);
    color: #ff4444;
    border: 1px solid #ff4444;
}

.contact-form__error {
    color: #ff4444;
    font-size: 14px;
    margin-top: 8px;
    padding: 8px 12px;
    background-color: rgba(255, 68, 68, 0.1);
    border-radius: 4px;
    border: 1px solid rgba(255, 68, 68, 0.2);
}

.contact-form__field {
    position: relative;
    margin-bottom: 20px;
}

.contact-form__location-fields {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .contact-form__location-fields {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.contact-form__field select.error {
    border-color: #ff4444;
    background-color: rgba(255, 68, 68, 0.05);
}