* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Maven Pro', sans-serif;
  background-color: #111519;
  color: #F0EBC5;
  line-height: 1.6;
  overflow-x: hidden;
}
.hero-section {
  position: relative;
  background-color: #2A2E33;
  padding-top: 145px;
  height: 814px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-section .hero-container {
  position: relative;
  z-index: 2;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
}
.hero-section .hero-container h1 {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 40px;
  color: #F0EBC5;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.hero-section .hero-container .hero-description {
  max-width: 1130px;
  margin: 0 auto;
}
.hero-section .hero-container .hero-description p {
  font-size: 18px;
  line-height: 36px;
  color: #F0EBC5;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
.hero-section .forest-line-background {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.hero-section .forest-line-background img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.outdoor-featured-section {
  background-color: #111519;
  padding: 80px 0;
}
.outdoor-featured-section .featured-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .outdoor-featured-section .featured-container {
    flex-direction: column;
    gap: 40px;
  }
}
.outdoor-featured-section .featured-image {
  flex: 0 0 500px;
}
@media (max-width: 1024px) {
  .outdoor-featured-section .featured-image {
    flex: none;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}
.outdoor-featured-section .featured-image img {
  width: 100%;
  height: auto;
  border-radius: 25px;
}
.outdoor-featured-section .featured-content {
  flex: 1;
}
.outdoor-featured-section .featured-content .project-info p {
  font-size: 18px;
  line-height: 32px;
  color: #F0EBC5;
  margin-bottom: 20px;
}
.outdoor-featured-section .featured-content .project-info p:last-child {
  margin-bottom: 0;
}
.outdoor-featured-section .featured-content .project-info ul {
  margin: 25px 0;
  padding-left: 25px;
}
.outdoor-featured-section .featured-content .project-info ul li {
  font-size: 18px;
  line-height: 30px;
  color: #F0EBC5;
  margin-bottom: 8px;
}
.outdoor-featured-section .featured-content .project-info ul li:last-child {
  margin-bottom: 0;
}
.outdoor-featured-section .featured-content .project-info strong {
  font-weight: 700;
  color: #F0EBC5;
}
.people-silhouette-section {
  background-color: #111519;
  padding: 0;
  width: 100%;
  overflow: hidden;
}
.people-silhouette-section .silhouette-container {
  width: 100%;
}
.people-silhouette-section .silhouette-container img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
@media (max-width: 768px) {
  .people-silhouette-section .silhouette-container img {
    height: auto;
  }
}
@media (max-width: 480px) {
  .people-silhouette-section .silhouette-container img {
    height: auto;
  }
}
.outdoor-angebote-section {
  background-color: #2A2E33;
  padding: 80px 0 120px;
  min-height: 1400px;
}
.outdoor-angebote-section .angebote-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.outdoor-angebote-section .angebote-container h2 {
  font-size: 40px;
  font-weight: 400;
  color: #F0EBC5;
  text-align: center;
  margin-bottom: 80px;
}
.angebote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 20px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: stretch;
}
@media (max-width: 1200px) {
  .angebote-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .angebote-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.angebot-card {
  background-color: transparent!important;
  border-radius: 25px!important;
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.angebot-card:hover {
  transform: translateY(-10px);
}
.angebot-card .angebot-image {
  height: 238px;
  border-radius: 25px 25px 0 0;
  overflow: hidden;
  margin-bottom: -1px;
}
.angebot-card .angebot-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.angebot-card .angebot-image:hover img {
  transform: scale(1.05);
}
.angebot-card .angebot-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  border-radius: 0 0 25px 25px;
  flex-grow: 1;
  justify-content: space-between;
}
.angebot-card .angebot-content.dark {
  background-color: #111519 !important;
}
.angebot-card .angebot-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #F0EBC5;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.angebot-card .angebot-content h3 sup {
  font-size: 15px;
  vertical-align: super;
}
.angebot-card .angebot-content .angebot-text {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.angebot-card .angebot-content .angebot-text p {
  font-size: 18px;
  line-height: 30px;
  color: #F0EBC5;
  margin-bottom: 20px;
}
.angebot-card .angebot-content .angebot-text p:last-child {
  margin-bottom: 0;
}
.angebot-card .angebot-content .angebot-button {
  display: inline-block;
  background-color: transparent;
  color: #F0EBC5;
  border: 1px solid #F0EBC5;
  border-radius: 30px;
  padding: 12px 40px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  margin-top: 30px;
  align-self: flex-start;
  flex-shrink: 0;
}
.angebot-card .angebot-content .angebot-button:hover {
  background-color: #F0EBC5;
  color: #2A2E33;
}
.archery-silhouette-section {
  background-color: #2A2E33;
  padding: 0;
  width: 100%;
  overflow: hidden;
}
.archery-silhouette-section .archery-silhouette-container {
  width: 100%;
}
.archery-silhouette-section .archery-silhouette-container img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
@media (max-width: 768px) {
  .archery-silhouette-section .archery-silhouette-container img {
    height: auto;
  }
}
@media (max-width: 480px) {
  .archery-silhouette-section .archery-silhouette-container img {
    height: auto;
  }
}
.nav {
  background-color: #2A2E33;
  height: 80px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  overflow: hidden;
}
.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.nav-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}
.nav-content {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
}
.nav-links a {
  color: #F0EBC5;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.nav-links a:hover {
  color: #EA5A31;
}
.contact-button {
  background-color: #EA5A31;
  color: #F0EBC5;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  transition: background-color 0.3s ease;
}
.contact-button:hover {
  background-color: #ef7f5f;
}
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.mobile-nav-toggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #F0EBC5;
  margin: 5px 0;
  transition: transform 0.3s ease;
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #2A2E33;
  border: 1px solid rgba(240, 235, 197, 0.1);
  border-radius: 8px;
  min-width: 250px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.dropdown-menu li {
  list-style: none;
}
.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: #F0EBC5;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.dropdown-menu li a:hover {
  background-color: rgba(240, 235, 197, 0.1);
  color: #EA5A31;
  padding-left: 30px;
}
@media (max-width: 992px) {
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background-color: transparent;
    border: none;
    box-shadow: none;
    padding-left: 30px;
    margin-top: 10px;
  }
  .dropdown-menu a {
    font-size: 12px;
    padding: 5px 10px;
  }
}
@media (max-width: 992px) {
  .navigation .nav-brand img {
    height: 45px;
  }
  .navigation .nav-content {
    gap: 30px;
  }
  .navigation .nav-content .nav-links {
    gap: 20px;
    font-size: 14px;
  }
  .navigation .nav-content .contact-button {
    padding: 10px 20px;
    font-size: 14px;
    min-width: 100px;
  }
  .nav-links {
    display: none;
  }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #2A2E33;
    padding: 20px;
    gap: 15px;
  }
  .nav-content {
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
  }
  .mobile-nav-toggle {
    display: block;
  }
}
@media (max-width: 768px) {
  .navigation .nav-brand img {
    height: 40px;
  }
  .navigation .nav-content {
    gap: 20px;
  }
  .navigation .nav-content .nav-links {
    gap: 15px;
    font-size: 12px;
  }
  .navigation .nav-content .contact-button {
    padding: 8px 16px;
    font-size: 12px;
    min-width: 80px;
  }
}
@media (max-width: 480px) {
  .contact-button {
    display: none;
  }
}
@media (max-width: 1200px) {
  .nav-links {
    gap: 20px;
  }
}
.mobile-nav-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background-color: #2A2E33;
  border-top: 1px solid rgba(240, 235, 197, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
}
.mobile-nav-menu.active {
  display: block;
  animation: slideDown 0.3s ease;
}
.mobile-nav-menu .mobile-nav-links {
  list-style: none;
  margin: 0;
  padding: 20px 0;
}
.mobile-nav-menu .mobile-nav-links li {
  border-bottom: 1px solid rgba(240, 235, 197, 0.1);
}
.mobile-nav-menu .mobile-nav-links li:last-child {
  border-bottom: none;
}
.mobile-nav-menu .mobile-nav-links li > a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 16px;
  transition: all 0.3s ease;
}
.mobile-nav-menu .mobile-nav-links li > a:hover {
  background-color: rgba(240, 235, 197, 0.1);
  color: #F0EBC5;
}
.mobile-nav-menu .mobile-nav-links li .mobile-dropdown {
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.1);
}
.mobile-nav-menu .mobile-nav-links li .mobile-dropdown li {
  border-bottom: none;
}
.mobile-nav-menu .mobile-nav-links li .mobile-dropdown li a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  padding: 5px 20px;
  transition: all 0.3s ease;
}
.mobile-nav-menu .mobile-nav-links li .mobile-dropdown li a:hover {
  background-color: rgba(240, 235, 197, 0.1);
  color: #F0EBC5;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.nav-logo a {
  display: block;
  transition: transform 0.3s ease;
}
.nav-logo a:hover {
  transform: scale(1.05);
}
.nav-logo a img {
  height: 50px;
  width: auto;
  object-fit: contain;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Maven Pro', sans-serif;
  background-color: #111519;
  color: #F0EBC5;
  line-height: 1.6;
  overflow-x: hidden;
}
.service-hero {
  position: relative;
  background-color: #2A2E33;
  padding-top: 145px;
  height: 814px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.service-hero .hero-container {
  position: relative;
  z-index: 2;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
}
.service-hero .hero-container h1 {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 40px;
  color: #F0EBC5;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.service-hero .hero-container .hero-description {
  max-width: 1130px;
  margin: 0 auto;
}
.service-hero .hero-container .hero-description p {
  font-size: 18px;
  line-height: 36px;
  color: #F0EBC5;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}
.service-hero .hero-container .hero-description p:last-child {
  margin-bottom: 0;
}
.service-hero .forest-line-background {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.service-hero .forest-line-background img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.service-angebote-section {
  background-color: #111519;
  padding: 80px 0 120px;
}
.service-angebote-section .angebote-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.service-angebote-section .angebote-container h2 {
  font-size: 40px;
  font-weight: 400;
  color: #F0EBC5;
  text-align: center;
  margin-bottom: 80px;
}
.angebote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 20px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: stretch;
}
@media (max-width: 1200px) {
  .angebote-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .angebote-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.angebot-card {
  background-color: transparent;
  border-radius: 25px;
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.angebot-card:hover {
  transform: translateY(-10px);
}
.angebot-card .angebot-image {
  height: 238px;
  border-radius: 25px 25px 0 0;
  overflow: hidden;
  margin-bottom: -1px;
}
.angebot-card .angebot-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.angebot-card .angebot-image:hover img {
  transform: scale(1.05);
}
.angebot-card .angebot-content {
  background-color: #2A2E33;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border-radius: 0 0 25px 25px;
  flex-grow: 1;
  justify-content: space-between;
}
.angebot-card .angebot-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #F0EBC5;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.angebot-card .angebot-content h3 sup {
  font-size: 15px;
  vertical-align: super;
}
.angebot-card .angebot-content .angebot-text {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.angebot-card .angebot-content .angebot-text p {
  font-size: 18px;
  line-height: 30px;
  color: #F0EBC5;
  margin-bottom: 20px;
}
.angebot-card .angebot-content .angebot-text p:last-child {
  margin-bottom: 0;
}
.angebot-card .angebot-content .angebot-button {
  display: inline-block;
  background-color: transparent;
  color: #F0EBC5;
  border: 1px solid #F0EBC5;
  border-radius: 30px;
  padding: 12px 40px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  margin-top: 30px;
  align-self: flex-start;
  flex-shrink: 0;
}
.angebot-card .angebot-content .angebot-button:hover {
  background-color: #F0EBC5;
  color: #2A2E33;
}
.people-silhouette-section {
  background-color: #111519;
  padding: 0;
  width: 100%;
  overflow: hidden;
}
.people-silhouette-section .silhouette-container {
  width: 100%;
}
.people-silhouette-section .silhouette-container img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
@media (max-width: 768px) {
  .people-silhouette-section .silhouette-container img {
    height: auto;
  }
}
@media (max-width: 480px) {
  .people-silhouette-section .silhouette-container img {
    height: auto;
  }
}
/* Import required settings */
/* ========================================== */
/* FOREST LINE CONTAINER - EVENTWELT SUBPAGES */
/* ========================================== */
.forest-line-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: auto;
  z-index: 10;
  overflow: hidden;
}
.forest-line-container img {
  width: 100vw;
  height: auto;
  display: block;
  min-width: 1200px;
}
/* ========================================== */
/* BASE STYLES FOR EVENTWELT PAGES */
/* ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Maven Pro', sans-serif;
  background-color: #111519;
  color: #F0EBC5;
  line-height: 1.6;
}
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}
.contact-button {
  background-color: #EA5A31;
  color: #F0EBC5;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  transition: background-color 0.3s ease;
}
.contact-button:hover {
  background-color: #EA5A31;
}
/* ========================================== */
/* HEADER STYLES */
/* ========================================== */
.eventwelt-header,
.indoorwelt-header,
.outdoorwelt-header,
.servicewelt-header,
.mietwelt-header {
  position: relative;
  background-color: #111519;
  padding-top: 80px;
  overflow: hidden;
}
.eventwelt-hero,
.indoorwelt-hero {
  position: relative;
  height: 785px;
  background-color: #111519;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
}
.eventwelt-hero.light,
.indoorwelt-hero.light {
  background-color: #2A2E33 !important;
}
.outdoorwelt-hero {
  position: relative;
  height: 785px;
  background-image: url('../images/wiese_zielscheibe_dark_01_fertig 1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
}
.eventwelt-hero-content,
.indoorwelt-hero-content,
.outdoorwelt-hero-content {
  max-width: 1360px;
  margin: 0 auto;
  color: #F0EBC5;
}
.eventwelt-hero-content h1,
.indoorwelt-hero-content h1,
.outdoorwelt-hero-content h1 {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 40px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.hero-description {
  max-width: 1130px;
  margin: 0 auto;
}
.hero-description p {
  font-size: 18px;
  line-height: 36px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
.hero-description p:first-child {
  font-weight: 700;
}
.hero-logo-section {
  background-color: #111519;
  padding: 60px 0;
  text-align: center;
}
.hero-logo img {
  height: 180px;
  width: auto;
}
/* ========================================== */
/* ANGEBOTE SECTION */
/* ========================================== */
.angebote-section {
  background-color: #111519;
  padding: 20px 0;
}
.angebote-section .container {
  padding: 0 20px;
}
.angebote-section h2 {
  font-size: 48px;
  font-weight: 400;
  color: #F0EBC5;
  text-align: center;
  margin-bottom: 20px;
}
.angebote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  margin-bottom: 0;
}
.angebot-card {
  background-color: #111519;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.angebot-card:hover {
  transform: translateY(-5px);
}
.angebot-image {
  height: 240px;
  overflow: hidden;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.angebot-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.angebot-content {
  background-color: #111519;
  padding: 40px;
  min-height: 325px;
  display: flex;
  flex-direction: column;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
.angebot-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #F0EBC5;
  margin-bottom: 30px;
}
.angebot-content p {
  font-size: 18px;
  line-height: 30px;
  color: #F0EBC5;
  margin-bottom: 30px;
  flex-grow: 1;
}
.angebot-content p:last-of-type {
  margin-bottom: 40px;
}
.angebot-button {
  display: inline-block;
  background-color: transparent;
  color: #F0EBC5;
  border: 1px solid #F0EBC5;
  border-radius: 30px;
  padding: 12px 40px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  margin-top: auto;
  align-self: flex-start;
}
.angebot-button:hover {
  background-color: #F0EBC5;
  color: #111519;
}
/* ========================================== */
/* RESPONSIVE STYLES */
/* ========================================== */
@media (max-width: 768px) {
  .nav-content {
    gap: 20px;
  }
  .nav-links {
    gap: 15px;
  }
  .nav-links a {
    font-size: 16px;
  }
  .contact-button {
    padding: 10px 20px;
    font-size: 16px;
  }
  .eventwelt-hero-content h1,
  .indoorwelt-hero-content h1,
  .outdoorwelt-hero-content h1 {
    font-size: 36px;
    margin-bottom: 30px;
  }
  .hero-description p {
    font-size: 16px;
    line-height: 28px;
  }
  .angebote-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .angebot-content {
    padding: 30px;
    min-height: auto;
  }
}
.zurueck-button-section {
  background-color: #2A2E33;
  padding: 60px 0;
  text-align: center;
}
.zurueck-button-section .zurueck-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.zurueck-button-section.dark {
  background-color: #111519 !important;
}
.zurueck-button-section.dark .zurueck-button {
  background-color: #2A2E33 !important;
}
.zurueck-button-section .zurueck-button {
  display: inline-block;
  background-color: #111519;
  color: #F0EBC5;
  border-radius: 30px;
  padding: 15px 50px;
  text-decoration: none;
  font-size: 24px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.zurueck-button-section .zurueck-button:hover {
  background-color: #F0EBC5;
  color: #2A2E33;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .zurueck-button-section .zurueck-button {
    font-size: 20px;
    padding: 12px 40px;
  }
}
@media (max-width: 480px) {
  .zurueck-button-section .zurueck-button {
    font-size: 18px;
    padding: 10px 35px;
  }
}
