@font-face {
  font-family: "Roboto";
  src: url("/assets/fonts/Roboto-Regular.woff2") format("woff2"),
       url("/assets/fonts/Roboto-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("/assets/fonts/Roboto-Bold.woff2") format("woff2"),
       url("/assets/fonts/Roboto-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("/assets/fonts/Roboto-Italic.woff2") format("woff2"),
       url("/assets/fonts/Roboto-Italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
}

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  background-color: #1e1e1e; 
  color: #ffffff; 
  background-image: url('/Hero-Section.svg');
  background-size: cover; 
  background-repeat: no-repeat;
  background-attachment: fixed; 
  background-position: center center; 
  overflow: auto; 
  height: 100%;
}

a {
  color: #58C9EC; 
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease, border-bottom-color 0.3s ease;
}

a:hover {
  color: #78E0FC; 
}

.header {
  background-color: transparent !important; 
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px; 
  margin: 0 auto;
}

.header-logo img {
  max-height: 20px;
}

.header-nav a {
  margin-left: 30px;
  margin-top: 30px;
  text-decoration: none;
  color: #ffffff;
  font-weight: normal;
  font-size: 16px;
  text-transform: capitalize;
}

.header-nav .btn-cta {
  background-color: #1FBC4E;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
}

.header-nav .btn-cta:hover {
  background-color: transparent;
  color: #28a745; 
  box-shadow: 0 0 5px 5px #28a745; 
  border-color: #28a745; 
  border-radius: 20px;
}

/* Mobile Ansicht */
@media (max-width: 768px) {
  
  .header {
    display: flex;
    flex-direction: column;
    align-items: center; 
    padding: 20px 15px;
  }

    .header-logo {
    text-align: center;
    margin-bottom: 10px; 
  }

    .header-nav {
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
  }

  .header-nav a {
    margin: 5px;
    display: inline-block; 
  }

    .header-nav .btn-cta {
    margin-top: 20px;
    width: 80%; 
    text-align: center;
  }

   .container {
    width: 100%; 
    max-width: 100%; 
    padding: 0 15px;
    box-sizing: border-box; 
  }

  .header, {
    width: 100%; 
    max-width: 100%;
    padding: 0 15px; 
  }

  
  h1, h2, h3, p {
    word-wrap: break-word; 
  }

  body {
    overflow-x: hidden; 
  }
}


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

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 20px;
  font-weight: bold;
}

h1 {
  font-size: 2.5rem;
  padding-top: 50px;
}

h2 {
  font-size: 1.8rem;
  padding-top: 28px;
}

h3 {
  font-size: 1.3rem;
  padding-top: 18px;
}

/* CTA Section */
.section-cta {
  background-image: url('/Hero-Section.svg');
  background-size: cover; 
  background-repeat: no-repeat;
  background-attachment: fixed; 
  background-position: center center; 
  padding: 50px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin: 50px 0;
}

.section-cta .btn-cta {
  background-color: #1FBC4E;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  
}

.section-cta .btn-cta:hover {
  background-color: transparent;
  color: #28a745; 
  box-shadow: 0 0 5px 5px #28a745; 
  border-color: #28a745; 
  border-radius: 20px;
}

/* Footer Styling */
.footer {
  max-width: 1200px; 
  margin: 0 auto;
  background-color: transparent !important; 
  padding: 30px 15px;
  color: #ffffff; 
  border-top: 1px solid #3a3a3a; 
}

.footer p {
  text-align: left; 
  font-size: 12px;
  font-weight: 700;
  color: #ffffff; 
  padding-top: 10px;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer .logo {
  flex: 1;
  text-align: left;
}

.footer .nav {
  flex: 1;
  display: flex;
  justify-content: space-between;
}

.footer .nav-column {
  flex: 1;
  padding: 0 10px;
}

.footer .nav-column a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 2px;
}


.footer-link:hover {
  color: #1FBC4E; 
}


.nav-column li {
  display: flex;
  align-items: center; 
  margin-bottom: 2px;
}


.nav-column li i {
  font-size: 8px; 
  margin-right: 5px;
  color: #ffffff;
  display: inline-block;
  vertical-align: middle;
}

.nav-column li:hover i {
  color: #1FBC4E; 
}

.w-socials-list {
  display: flex;
  align-items: center;
}

.w-socials-item {
  margin-right: 10px;
}

.w-socials-item i {
  font-size: 18px; 
  color: #ffffff;
}

.w-socials-item:hover i {
  color: #1FBC4E;
}

@media (max-width: 768px) {
 
  .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 15px;
  }

  .footer .logo, .footer address p h3 h4{
    text-align: left;
    margin-bottom: 10px;
  }

  .footer .logo, .footer address p {
    font-size: 10px;
  }

  .footer .logo, .footer h3 {
    font-size: 14px;
  }

  .footer .nav {
    flex-direction: column; 
    text-align: center;
  }

  .footer .nav-column {
    margin-bottom: 15px; 
  }

  .footer .nav-column a {
    display: block;
    margin-bottom: 5px; 
  }

  .footer .w-socials-list {
    justify-content: center;
    margin-bottom: 20px;
  }

  .footer .w-socials-item {
    margin: 0 10px; 
  }

  body {
    overflow-x: hidden; 
  }
}

.section-light {
  background-image: url('/Hero-Section.svg');
  background-size: cover; 
  background-repeat: no-repeat; 
  background-attachment: fixed; 
  background-position: center center; 
  padding: 40px 20px;
  border-radius: 8px; 
  color: #fff; 
  margin-bottom: 50px;
  margin-top: 50px;
}

.section-medium {
  background-image: url('/Hero-Section.svg');
  background-size: cover;
  background-repeat: no-repeat; 
  background-attachment: fixed;
  background-position: center center; 
  padding: 40px 20px;
  border-radius: 8px;
  color: #fff; 
  margin-bottom: 50px;
  margin-top: 50px;
}

.section-dark {
  background-image: url('/Hero-Section.svg');
  background-size: cover;
  background-repeat: no-repeat; 
  background-attachment: fixed; 
  background-position: center center; 
  padding: 40px 20px;
  border-radius: 8px;
  color: #fff;
  margin-bottom: 50px;
  margin-top: 50px;
}

.btn-cta {
  background-color: #1FBC4E !important; 
  border: none;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 50px;
  margin-top: 25px;
}

.btn-cta:hover {
  background-color: transparent;
  color: #28a745; 
  box-shadow: 0 0 5px 5px #28a745; 
  border-color: #28a745; 
  border-radius: 20px;
}


