.identity-section {
  width: 100%;
  min-height: 100vh;
  background-color: black;
  display: flex;
  align-items: center;
  padding: clamp(40px, 8vh, 100px) 0;
}

.identity-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.identity-content {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vh, 40px);
}

.identity-title {
  font-family: 'Headline', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.identity-title-white {
  color: white;
}

.identity-title-red {
  color: #F40000;
}

.identity-text {
  font-family: 'Basic text 2', sans-serif;
  font-size: 22px;
  color: white;
  line-height: 1.6;
  max-width: 500px;
  margin: 0;
}

.identity-text strong {
  font-family: 'Basic text', sans-serif;
  font-weight: 700;
}

.identity-video-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.identity-video {
  width: 600px;
  height: 1060px;
  max-width: 100%;
  max-height: 80vh;
}


@media (max-width: 968px) {
  .identity-container {
    grid-template-columns: 1fr;
    gap: clamp(30px, 5vh, 50px);
  }
  
  .identity-text {
    max-width: 100%;
  }
}