* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: system-ui, sans-serif;
  overflow: hidden;
}

.split-container {
  display: flex;
  width: 100%;
  height: 100vh;
}

.split-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.split-section:hover {
  flex: 1.2;
  background-color: rgba(0, 0, 0, 0.1);
}

.company-logo {
  max-width: 300px;
  height: auto;
  transition: transform 0.3s ease;
}

.split-section:hover .company-logo {
  transform: scale(1.1);
}

.logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .split-container {
    flex-direction: column;
  }

  .split-section {
    flex: 1;
    height: 50vh;
  }

  .split-section:hover {
    flex: 1.2;
  }

  .company-logo {
    max-width: 200px;
  }
}