* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background: url('../img/bg-yet.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
  }
  
  .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
  }
  
  .logo-container {
    display: flex;
    justify-content: space-between;
    width: 80%;
    max-width: 1200px;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1rem;
    flex: 1;
  }
  
  .logo-item img {
    max-width: 150px;
    height: auto;
  }
  
  .discover-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    color: white;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .btn-consulting {
    background-color: #0db1ab;
  }
  
  .btn-consulting:hover {
    background-color: #089a91;
  }
  
  .btn-innov {
    background-color: #666ab1;
  }
  
  .btn-innov:hover {
    background-color: #565a91;
  }
  
  footer {
    background-color: white;
    text-align: center;
    padding: 1rem 0;
  }
  
  footer p {
    font-family: Helvetica, Arial, sans-serif;
    color: #323685;
    font-size: 1rem;
  }
  
  footer p strong {
    font-weight: bold;
  }