.become-expert-section {
  padding: 100px 20px;
  background-color: #fff;
}

.expert-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

/* Sol Taraf - Görsel */
.expert-image {
  flex: 1;
  background-color: #c4c4c4;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.expert-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sağ Taraf - Content */
.expert-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.expert-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  color: #000;
  letter-spacing: -1px;
  margin: 0;
}

.expert-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.expert-link:hover {
  gap: 15px;
}

.expert-link svg {
  width: 8px;
  height: 12px;
  transition: transform 0.3s ease;
}

.expert-link:hover svg {
  transform: translateX(3px);
}

/* Mobil Uyumluluk */
@media (max-width: 1024px) {
  .expert-container {
    gap: 60px;
  }

  .expert-title {
    font-size: 42px;
  }

  .expert-image {
    min-height: 350px;
  }
}

@media (max-width: 768px) {
  .become-expert-section {
    padding: 60px 20px;
  }

  .expert-container {
    flex-direction: column;
    gap: 40px;
  }

  .expert-image {
    width: 100%;
    min-height: 300px;
  }

  .expert-content {
    text-align: center;
    align-items: center;
  }

  .expert-title {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .become-expert-section {
    padding: 40px 20px;
  }

  .expert-title {
    font-size: 28px;
  }

  .expert-link {
    font-size: 15px;
  }

  .expert-image {
    min-height: 250px;
  }
}