.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  height: 100px;
  background-color: #f3f8f6;
  position: relative;
}

.header-left {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.header-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.header-middle {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.header-center {
  text-align: center;
}

.share-title {
  font-size: 2rem;
  font-weight: bold;
  color: #623666;
}

.share-subtitle {
  font-size: 1rem;
  color: #623666;
  font-style: italic;
  margin-top: 5px;
}

.header-right {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  gap: 0.5rem;
  margin-right: 8vw;
}

.floating-left {
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translateY(-50%);
  }
  
  .floating-right {
    position: absolute;
    top: 50%;
    right: 18%;
    transform: translateY(-50%);
  }
  
  .floating-icon {
    width: 55px;
    height: auto;
    animation: floaty 2s ease-in-out infinite;
  }
  
  @keyframes floaty {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
  }

  @media (max-width: 600px) {
    .floating-left,
    .floating-right {
      display: none;
    }
  }
  
  @media (max-width: 768px) {
    .share-title {
      font-size: 1.1rem; 
    }
  
    .share-subtitle {
      font-size: 0.8rem; 
    }
  }
  
  @media (max-width: 480px) {
    .share-title {
      font-size: 0.8rem; 
    }
  
    .share-subtitle {
      font-size: 0.3rem; 
    }
  }
  
  

  