.video-section {
  padding: 80px 20px;
  background-color: #f5f5f5;
}

.video-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* Sol taraf - Metin */
.video-text {
  flex: 1;
  max-width: 500px;
}

.video-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #666;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.video-title {
  font-size: 40px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #000;
}

.video-btn {
  padding: 14px 32px;
  background-color: #1c69d4;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.video-btn:hover {
  background-color: #1557b8;
  transform: translateX(5px);
}

/* Sağ taraf - Video */
.video-player {
  flex: 1.5;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
}

.video-player video {
  width: 100%;
  height: auto;
  display: block;
  background-color: #000;
}

/* Mobil Uyumluluk */
@media (max-width: 1024px) {
  .video-container {
    gap: 40px;
  }

  .video-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .video-section {
    padding: 60px 20px;
  }

  .video-container {
    flex-direction: column;
    gap: 30px;
  }

  .video-text {
    max-width: 100%;
    text-align: center;
  }

  .video-title {
    font-size: 32px;
  }

  .video-player {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .video-title {
    font-size: 28px;
  }

  .video-subtitle {
    font-size: 14px;
  }

  .video-btn {
    width: 100%;
    justify-content: center;
  }
}