.call-support {
    display: flex;
    justify-content: center;
}

.support-container {
  text-align: center;
  padding: 0 20px 60px 20px;
  border-radius: 12px;
  max-width: 400px;
}

.logo-field {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.support-title {
  font-size: 1.5rem;
  margin: 10px 0 5px;
  color: #2c2e35;
}

.support-subtitle {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 20px;
  color: #444;
}

.call-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #4973ff;
  color: #f9f9f9;
  font-size: 1rem;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 50px;
  transition: background 0.3s ease, transform 0.4s ease-out;
}

.call-button span {
    width: 16px;
    height: 16px;
}

.call-button:hover {
  transform: translateY(-2px); /* 2px yukarı kaydır */
}