body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #222;
      box-sizing: border-box;
}
*{    box-sizing: border-box;}

/* Header styles */
.site-header {
  background: #fff;
  padding: 0px 20px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.05);
}

.site-header .container {
  display: flex;
  align-items: top;
  justify-content: space-between;
  padding: 58px 0px;
    max-width: 1260px;
}

.logo img {
  max-width: auto;
}

.nav {
  position: relative;
}

a{
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 60px;
  font-size: 1.125rem;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #a00;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

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

/* Responsive nav */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 149px;
    right: -250px;
    flex-direction: column;
    align-items: flex-start;
    width: 250px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background: #2D3138;
    height: calc(100% - 166px);
    z-index: 9999;
	transition: .5s ease-in-out;
	        display: unset !important;
}

.nav-links.show {
    display: unset;
    right: 0px;
    padding: 0px;
}
.nav-links li {
    display: block;
    width: 100%;
    padding: 25px 15px;
    border-bottom: solid 2px #474747;
}
.nav-links li a {
    color: #fff;
}
  .hamburger {
    display: block;
  }

  .container {
    margin: 0 auto;
    padding: 16px 16px;
  }
}

.main-nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
}

/* Hero */
.hero {
  width: 100%;
  height: auto;
  display: block;
}

.hero img {
  width: 100%;
  height: auto;
  display: block;
}
/* Intro */
.intro {
  text-align: center;
  padding: 40px 20px 30px;
}
.intro h2 {
    font-size: 40px;
    margin-bottom: 10px;
    margin-top: 0px;
}
.intro p {
  color: #555;
  font-size: 1.25rem;
  text-align: left;
}

/* Services */
.services {display:flex; display:-webkit-box; display:-webkit-flex; display:-moz-flex; display:-ms-flex; flex-flow:wrap; width: 100%; padding:0px 20px;}
.services-count-1 .service-box { width: 100%;}

.services-count-2 .service-box { width: 48%;}
.services-count-2 .service-box:nth-child(odd){ margin-right:2%;}
.services-count-2 .service-box:nth-child(even){ margin-left:2%;}

.services-count-3 .service-box { width: 32%;}
.services-count-3 .service-box:nth-child(3n+2){ margin-right:2%; margin-left:2%;}


.service-box h3 {
  font-weight: bold;
  font-size: 1.25rem;
}

.service-box p {
  color: #555;
  font-size: 1.25rem;
}

.mehr {
  color: red;
  font-weight: bold;
}

/* Coaching Format */
.special-format {
  text-align: left;
  padding: 20px;
  font-size: 1.25rem;
}
.special-format a {
  color: red;
  text-decoration: none;
  font-weight: bold;
}

/* Footer */
.site-footer {
  background: #2d2f34;
  color: #ccc;
  text-align: left;
  position: relative;
  padding: 105px 0px 55px;

}
.site-footer .container {
    padding: 0px 15px;
    max-width: 1260px;
    width: 100%;
}
.footer-info {
  font-size: 14px;
  margin-bottom: 20px;
}
.footer-info strong {
  color: white;
}
.footer-nav ul {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  gap: 25px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav a:hover {
  color: #a00;
}

.footer-nav a {
  color: white;
  font-weight: bold;
  text-decoration: none;
}
.scroll-top {
  position: absolute;
  bottom: 30px;
  right: 30px;
  font-size: 24px;
  color: white;
  cursor: pointer;
}


.intro .intro-wrapper { display: flex; flex-flow: wrap;}
.intro .intro-wrapper .intro-left { width: 70%; padding-right: 50px; text-align: left;}
.intro .intro-wrapper .intro-right { width: 30%;}
.intro .intro-wrapper .intro-right img{ width:100%;}



/* Responsive */

@media screen and (max-width: 1199px)
{
	.site-header .container { padding: 30px 0px;}
	.logo img { height: 100px;}
	.site-footer { padding: 40px 0px;}
	
}

@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    text-align: center;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 10px;
  }
  
  .scroll-top {
    bottom: 10px;
    right: 10px;
  }

  .intro {
    text-align: center;
    padding: 0px;
  }

  .intro h2 {
    font-size: 30px;
    margin-bottom: 0px;
  }



  .special-format {
   padding: 0px; 
  }



  .footer-nav ul {
    display: block;
  }
  .services{
	  padding:0px;
  }
  
}

@media (max-width: 767px)
{
	.services-count-2 .service-box { width: 100%; margin-bottom:25px;}
	.services-count-2 .service-box:last-child { margin-bottom:0px;}
	.services-count-2 .service-box:nth-child(odd){ margin-right:0%;}
	.services-count-2 .service-box:nth-child(even){ margin-left:0%;}
	.services-count-3 .service-box { width: 100%; margin-bottom:25px;}
	.services-count-3 .service-box:last-child { margin-bottom:0px;}
	.services-count-3 .service-box:nth-child(3n+2){ margin-right:0%; margin-left:0%;}
	.intro .intro-wrapper .intro-left { width: 100%; padding-right: 0px;}
	.intro .intro-wrapper .intro-right { width: 100%; text-align: left;}
	.intro .intro-wrapper .intro-right img { width: 100%; max-width: 400px !important;}
	
}