.contact-wrapper {
  max-width: 800px;
  margin: 35px auto;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 40px;
}
/* Mobile Styles */
@media (max-width: 768px) {
  .contact-wrapper {
    padding: 24px 20px;
    border-radius: 8px;
  }
}
.contact-title {
  text-align: left;
  margin-bottom: 20px;
}
.checkbox-wrapper {
  display: flex;
  justify-content: center;
  align-items: baseline;
  p {
    color: gray;
    margin-bottom: 20px;
  }
  input {
    margin-right: 10px;
  }
}
.phone-input-container {
  position: relative;
  width: 100%;
  max-width: 320px;
}

.phone-input-wrapper {
  display: flex;
  align-items: center;
  border: 2px solid #e5e7eb;
  border-radius: 1px;

  transition: all 0.2s ease;
}

.phone-input-wrapper:focus-within {
  border-color: white;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.phone-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-size: 16px;
  color: #9ca3af;
  font-weight: 400;
}

.phone-input::placeholder {
  color: #9ca3af;
}

.phone-input:focus {
  color: #374151;
}

/* Mobile responsiveness */
@media (max-width: 480px) {
  .phone-input-container {
    max-width: 100%;
  }

  .phone-input {
    font-size: 16px; /* Prevents zoom on iOS */
  }
}
