.contact-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 40px;
  }

  .contact-left {
    flex: 1 1 50%;
    padding: 20px;
  }

  .contact-left h3 {
    font-size: 16px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .contact-left h1 {
    font-size: 60px;
    margin: 15px 0;
    color: #111;
    font-weight: 700;
    width: 70%;
  }

  .contact-left p {
    font-size: 16px;
    color: #444;
    line-height: 1.5;
    margin-bottom: 45px;
    width: 60%;
    font-weight: bold;
  }

  .contact-info {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 60px;
    width: 100%;
    margin-top: 30px;
    position: relative;
  }

  .contact-info::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    height: 70%;
    width: 1px;
    background-color: #e0e0e0;
    transform: translateX(-50%);
  }

  .contact-item {
    display: flex;
    flex-direction: column;
  }

  .contact-text {
    display: flex;
    flex-direction: column;
  }

  .contact-text strong {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
  }

  .contact-link {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .contact-link:hover {
    color: #6754e9;
  }

  @media (max-width: 768px) {
    .contact-section {
      flex-direction: column;
      padding: 20px;
    }
    
    .contact-left {
      flex: 1 1 100%;
      padding: 10px;
    }
    
    .contact-left h1 {
      font-size: 36px;
      width: 100%;
    }
    
    .contact-left p {
      width: 100%;
    }
    
    .contact-right {
      flex: 1 1 100%;
      margin: 0 auto;
      width: 100%;
    }
    
    .contact-info {
      flex-direction: column;
      gap: 30px;
      margin-top: 20px;
    }
    
    .contact-info::after {
      display: none;
    }
    
    .contact-text strong {
      font-size: 13px;
    }
    
    .contact-link {
      font-size: 16px;
    }
  }

  .contact-right {
    flex: 1 1 30%;
    background-color: white;
    padding: 30px;
    border-radius: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 8px 8px 0 rgba(0, 0, 0, 1);
    position: relative;
  }

  .star-icon {
    position: absolute;
    top: -25px;
    right: 40px;
    transform: rotate(15deg);
  }

  .contact-right form {
    display: flex;
    flex-direction: column;
  }

  .contact-right input,
  .contact-right textarea {
    width: 100%;
    margin-bottom: 20px;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 16px;
  }

  .contact-right textarea {
    resize: none;
    height: 150px;
  }

  .contact-right button {
    background-color: black;
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 15px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .contact-right button:hover {
    background-color: #444;
  }

  .message {
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
    font-weight: 500;
  }

  .success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
  }

  .error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
  }

  /* reCAPTCHA için stil - mobilde ortalama */
  @media (max-width: 768px) {
    .g-recaptcha-container {
      display: flex;
      justify-content: center;
    }
    
    .g-recaptcha {
      transform-origin: center;
    }
  }

  /* Daha küçük mobil cihazlar için ek düzenlemeler */
  @media (max-width: 480px) {
    .contact-section {
      padding: 15px;
    }
    
    .contact-right {
      padding: 20px;
    }
    
    .star-icon {
      right: 20px;
      width: 40px;
      height: 40px;
    }
  }

  /* Çok küçük ekranlar için reCAPTCHA düzenlemesi */
  @media (max-width: 320px) {
    .g-recaptcha {
      transform: scale(0.85);
      transform-origin: center;
    }
  }