@import url('https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap');

body {
    font-family: "Roboto Flex", serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #1b1927;
    color: #333;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .navbar {
    height: 160px;
  }
  
  .navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo{
    font-size: 20px;
    list-style: none;
    text-decoration: none;
    color: #e9e9e9;
    text-transform: uppercase;
    font-weight: 500;
    float: left;
    line-height: 100px;
  }
  .logo img {
    height: 100px;
    width: auto;
    float: left;
    margin-right: -41px;
  }
  
  .nav-buttons {
    display: flex;
    gap: 15px;
  }
  
  .nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #282539;
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
    font-size: 14px;
  }
  
  .nav-btn:hover {
    background: #7a71af;
  }
  
  .nav-btn i {
    font-size: 16px;
  }
  
  @media (max-width: 768px) {
    .nav-buttons {
      flex-direction: column;
      gap: 10px;
    }
  }
  
  
  .btn {
    background: #ff6f61;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
  }
  
  .btn:hover {
    background: #e65a50;
  }
  
  section {
    padding: 60px 0;
  }
  
  h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: #e5e5e5;
    text-transform: uppercase;
    font-weight: 500;
  }
  
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
  
  .service-card {
    background: #282539;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid #2d293f;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
  }
  
  .service-card i {
    font-size: 30px;
    color: #7a71af;
    margin-bottom: 10px;
  }
  
  .service-card h3 {
    font-size: 19px;
    margin: 10px 0;
    color: #fff;
  }
  
  .service-card ul {
    list-style: none;
    padding: 0;
  }
  
  .service-card ul li {
    margin: 10px 0;
    font-size: 14px;
    font-weight: 500;
    color: #746ca1;
  }
  
  .feature {
    text-align: center;
  }
  
  .feature i {
    font-size: 2em;
    color: #7a71af;
    margin-bottom: 10px;
  }
  
  .feature p {
    font-size: 17px;
    font-weight: 500;
    margin: 0;
    color: #ffff;
  }
  
  .contact-info {
    /* text-align: center; */
  }
  
  .contact-info p {
    font-size: 1.1em;
    margin: 10px 0;
  }
  
  .contact-info i {
    margin-right: 10px;
    color: #0078d7;
  }
  
  .contact-info a {
    color: #0078d7;
    text-decoration: none;
  }
  
  .contact-info a:hover {
    text-decoration: underline;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
  
  .contact-details {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .contact-details p {
    font-size: 1.1em;
    margin: 10px 0;
  }
  
  .contact-details i {
    margin-right: 10px;
    color: #0078d7;
  }
  
  .contact-details a {
    color: #0078d7;
    text-decoration: none;
  }
  
  .contact-details a:hover {
    text-decoration: underline;
  }
  
  .contact-map iframe {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
  }
  .about-section {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 60px 0;
  }
  
  .about-content {
    display: flex;
    align-items: center;
    gap: 40px;
  }
  
  .about-image {
    flex: 1;
  }
  
  .about-image img {
    width: 100%;
    max-width: 340px;
  }
  
  .about-text {
    flex: 1;
  }
  
  .about-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #e9e9e9;
    font-weight: 600;
    text-align: left;
  }
  
  .about-text p {
    font-size: 15px;
    color: #bfbfbf;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .about-list {
    list-style: none;
    padding: 0;
  }
  
  .about-list li {
    font-size: 16px;
    color: #d1d1d1;
    font-weight: 500;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
  }
  
  .about-list i {
    margin-right: 10px;
    color: #7a71af;
    font-size: 18px;
    border: 2px solid #2d293f;
    border-radius: 20px;
  }
  
  .btn {
    display: inline-block;
    padding: 12px 20px;
    background: #282539;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease;
    font-weight: 500;
    border: 2px solid #2d293f;
  }
  
  .btn:hover {
    background: #7a71af;
  }
  
  
  .contact-card {
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #282539;
    border: 2px solid #2d293f;
  }
  
  .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.15);
  }
  
  .contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0e0e0e2e;
    color: #fff;
    font-size: 16px;
    border-radius: 50%;
    margin-right: 30px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
    border: 2px solid #2d293f;
  }
  
  .contact-info h3 {
    margin: 0;
    font-size: 16px;
    color: #dfdfdf;
    text-transform: uppercase;
  }
  
  .contact-info p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #7a71af;
  }
  
  .contact-info a {
    color: #7a71af;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
  }
  
  .contact-info a:hover {
    color: #0078d7;
  }
  
  .map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
    border: 2px solid #2d293f;
  }
  iframe{
  border: 0px;
  }

  footer {
    color: #5d5d5d;
    text-align: center;
    padding: 20px 0;
  }
  
  footer p {
    margin: 0;
    color: #7a71af;
    font-size: 14px;
    float: left;
  }
  footer p2 {
      margin: 0;
      color: #7a71af;
      font-size: 14px;
      float: right;
      text-decoration: underline;
    }
  footer p2 a{
      color: #7a71af;
  }

  .impressum-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    background-color: #1b1927;
    color: #e9e9e9;
  }

  .impressum-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .impressum-header h1 {
    font-size: 36px;
    color: #fff;
    font-weight: 600;
  }

  .impressum-header p {
    font-size: 18px;
    color: #d1d1d1;
  }

  .impressum-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #282539;
    border: 2px solid #2d293f;
    border-radius: 4px;
  }

  .impressum-content {
    background-color: #282539;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid #2d293f;
  }

  .impressum-content h3 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: left;
    font-weight: 400;
    margin-bottom: -38px;
  }

  .impressum-content p {
    font-size: 15px;
    color: #c8c8c8;
    text-align: left;
    margin-bottom: -35px;
  }
.impressum-content p b{
  color: #ffff;
}

  .impressum-section ul {
    list-style: none;
    padding: 0;
  }

  .impressum-section ul li {
    font-size: 16px;
    color: #d1d1d1;
    font-weight: 500;
    margin-bottom: 10px;
  }

  .impressum-section a {
    color: #7a71af;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
  }

  .impressum-section a:hover {
    color: #0078d7;
  }

  @media (max-width: 768px) {
    .impressum-content {
        padding: 10px;
    }

    .impressum-section {
        padding: 15px;
    }
  }
  @media (max-width: 768px) {
    .about-image {
        display: none;
    }
    .logo{
      font-size: 0px;
      list-style: none;
      text-decoration: none;
      color: #e9e9e9;
      text-transform: uppercase;
      font-weight: 500;
      float: left;
      line-height: 100px;
    }
    .about-content {
      display: flex;
      align-items: center;
      gap: 40px;
      padding: 20px;
    }
    .about-text h2 {
      font-size: 28px;
      margin-bottom: 20px;
      color: #e9e9e9;
      font-weight: 600;
      text-align: center;
    }
     .about-text p {
      font-size: 15px;
      color: #bfbfbf;
      line-height: 1.6;
      margin-bottom: 20px;
      text-align: center;
    }
    .about-list {
      list-style: none;
      padding: 0px 69px;
    }
    .btn {
      display: inline-block;
      padding: 12px 20px;
      background: #282539;
      color: #fff;
      text-decoration: none;
      border-radius: 8px;
      transition: background 0.3s ease;
      font-weight: 500;
      border: 2px solid #2d293f;
      float:left;
      margin-left: 100px;
    }
}