@media (min-width: 768px) {
  .content {
    grid-template-columns: 3fr 1fr;
  }
}

@media (max-width: 900px) {
    .content {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
}



main {
  position: relative;
  z-index: 2;
}

.section {
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  border: 2px solid rgba(0, 0, 0, 0.1);
}


/* Add animation for subtle movement */
@keyframes float {
  0% {
    transform: rotate(-5deg) translate(0, 0);
  }
  50% {
    transform: rotate(-3deg) translate(5px, -5px);
  }
  100% {
    transform: rotate(-5deg) translate(0, 0);
  }
}

.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 33.33%; /* 3:1 aspect ratio */
}

video.responsive-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 1;
  object-fit: cover;
}

#endFrame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in;
  background-color: white;
  z-index: 2;
  object-fit: cover;
}

.header-banner-container {
  background-color: white;
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}

@keyframes slideRight {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  80% {
    transform: translateX(0%);
    opacity: 1;
  }
  100% {
    transform: translateX(5px); /* slight overshoot */
  }
}

.logo-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.logo-title-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0;
  font-size: 1.5rem;
  width: 100%;

  color: #2c3e50;
  border-bottom: 2px solid #3498db;
  padding-bottom: 10px;
  margin-top: 0;
}

@media (max-width: 400px) {
  .logo-title-container {
    flex-direction: column;
  }
}

.logo-div {
  margin-left: auto;
}

.logo-title {
  margin: 0;
  font-size: 1.5rem;
}

.logo-images {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  animation: slideRight 0.8s ease-out;
}

.logo-image {
  height: 1.5em;
  vertical-align: middle;
}

.logo-image:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.section h2 {
  color: #2c3e50;
  margin-top: 0;
}
.section h2 {
  color: #2c3e50;
  border-bottom: none;
  padding-bottom: 10px;
  margin-top: 0;
}