* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Quantico', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    padding: 20px;
  }

  
  
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .logo img {
    height: 38px;
    width: auto;
  }

  .haubtool img {
    height: 50px;
    width: auto;
    margin-top: 4%;
  }
  
  
  .contact-link {
    font-weight: bold;
    color: #EBEDF3;
    text-decoration: none;
  }
  
  .main-content {
    display: flex;
    flex-direction: row;
    gap: 40px;
    color: rgb(255, 246, 246);
  }
  
  .left-content {
    flex: 2;
  }

  .contact-link {
    margin-right: 1%;
    color: #7e7e7e;
    margin-top: -2%;
    font-size: 20px;
    font-weight: 400;
  }
  
  .right-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 2.8%;
  }

  .company-info {
    margin-top: 10%;
  }
  
  .right-image img {
    max-width: 150%;
    height: auto;
    padding: 10px;
    margin-right: 3%;
  }
 
  
  h1 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  h2 {
    font-size: 20px;
    margin-top: 40px;
    margin-bottom: 20px;
  }
  
  h3 {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #05a194;
  }
  
  a {
    color: #ffffff;
    text-decoration: underline;
  }
  
  .company-info p,
  .info-section p {
    margin-bottom: 10px;
  }

  .social-icons {
    display: flex;
    gap: 24px;
    margin-top: 38px;
  }
  


  
  /* Responsive za mobitele */
  @media screen and (max-width: 768px) {
    .main-content {
      flex-direction: column;
    }

    .contact-link {
      margin-right: 1%;
      color: #ffffff;
      margin-top: -10%;
      font-size: 13px;
      font-weight: 400;
    }
  
    .right-image {
      
      max-width: 70%;
      
      margin-left: 16%;
      margin-top: -4%;
    }
  
    .logo img {
      height: 40px;
      width: auto;
      margin-left: 97%;
      
      
    }
  
    h1 {
      font-size: 20px;
    }
  
    h2 {
      font-size: 18px;
    }
  
    h3 {
      font-size: 15px;
    }
  }
  